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