2016-12-28 23:49:51 +01:00
|
|
|
{
|
2017-02-22 16:54:08 +01:00
|
|
|
"compilerOptions": {
|
2017-10-06 23:43:36 +02:00
|
|
|
"allowJs": true,
|
2017-02-22 16:54:08 +01:00
|
|
|
"noEmitOnError": false,
|
2018-06-17 10:43:54 +02:00
|
|
|
"noImplicitAny": true,
|
2017-02-22 16:54:08 +01:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
2018-03-14 20:41:05 +01:00
|
|
|
"sourceMap": true,
|
2017-03-04 11:20:58 +01:00
|
|
|
"target": "es2017",
|
2017-02-22 16:54:08 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": false,
|
2018-02-09 10:28:06 +01:00
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
2019-04-12 18:43:22 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2019-01-30 17:08:43 +01:00
|
|
|
"experimentalDecorators": true,
|
2019-04-07 14:50:36 +02:00
|
|
|
"emitDecoratorMetadata": true,
|
2019-01-31 06:40:06 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/@types"
|
|
|
|
]
|
2017-02-22 16:54:08 +01:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2018-02-10 02:27:05 +01:00
|
|
|
"./src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2018-03-29 13:32:18 +02:00
|
|
|
"./src/client/app/**/*.ts"
|
2017-02-22 16:54:08 +01:00
|
|
|
]
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|