TSLint compliance

This commit is contained in:
hensm
2019-09-25 19:32:18 +01:00
parent 1917c273be
commit d4dfdea050
8 changed files with 7 additions and 7 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"esModuleInterop": true
, "module": "commonjs"
, "noImplicitAny": true
, "noUnusedLocals": true
, "noUnusedParameters": true
, "removeComments": true
, "resolveJsonModule": true
, "target": "es6"
}
}