2016-12-28 23:49:51 +01:00
|
|
|
{
|
2019-11-24 09:09:32 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/@types"
|
2020-05-23 16:21:09 +02:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 09:09:32 +01:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2020-12-12 13:41:08 +01:00
|
|
|
"./src/client/**/*.ts"
|
2019-11-24 09:09:32 +01:00
|
|
|
]
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|