2017-02-22 15:54:08 +00:00
|
|
|
{
|
2020-09-06 06:05:00 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"experimentalDecorators": true,
|
2020-09-06 03:30:27 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-09-06 03:43:15 +00:00
|
|
|
"baseUrl": ".",
|
2020-09-06 03:30:27 +00:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
},
|
2020-09-06 06:05:00 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/@types",
|
|
|
|
"src/client/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"webworker"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts"
|
|
|
|
]
|
2017-02-22 15:54:08 +00:00
|
|
|
}
|