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