test - convert web integration to TS

This commit is contained in:
Benjamin Pasero
2020-02-07 12:41:08 +01:00
parent ca5144362b
commit 4be3cc8846
9 changed files with 241 additions and 34 deletions

View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"target": "es2017",
"strictNullChecks": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"lib": [
"es2016",
"dom"
]
},
"exclude": [
"node_modules"
]
}