2016-12-28 16:49:51 -06:00
|
|
|
{
|
2019-11-24 02:09:32 -06:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
2021-03-23 21:05:37 -05:00
|
|
|
"noUnusedLocals": false,
|
2019-11-24 02:09:32 -06:00
|
|
|
"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,
|
2021-03-23 03:24:40 -05:00
|
|
|
"rootDir": "./",
|
|
|
|
"baseUrl": "./",
|
2021-03-23 03:30:14 -05:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
},
|
2021-03-23 03:24:40 -05:00
|
|
|
"outDir": "../built",
|
2019-11-24 02:09:32 -06:00
|
|
|
"typeRoots": [
|
2021-03-12 09:18:41 -06:00
|
|
|
"../node_modules/@types",
|
|
|
|
"./@types"
|
2020-05-23 09:21:09 -05:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 02:09:32 -06:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2021-03-12 09:18:41 -06:00
|
|
|
"./**/*.ts"
|
2019-11-24 02:09:32 -06:00
|
|
|
],
|
|
|
|
"exclude": [
|
2021-03-12 09:18:41 -06:00
|
|
|
"./client/**/*.ts"
|
2019-11-24 02:09:32 -06:00
|
|
|
]
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|