2019-01-16 11:28:05 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"declaration": true,
|
2019-07-14 22:18:00 +02:00
|
|
|
"target": "esnext",
|
2019-01-16 11:28:05 +01:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"strictNullChecks": true
|
|
|
|
|
},
|
2019-07-14 22:18:00 +02:00
|
|
|
"include": ["src/**/*.ts","src/*.ts"]
|
2019-01-16 11:28:05 +01:00
|
|
|
}
|