2016-12-28 22:49:51 +00:00
|
|
|
{
|
2019-11-24 08:09:32 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
2021-03-24 02:05:37 +00:00
|
|
|
"noUnusedLocals": false,
|
2019-11-24 08:09:32 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
2021-11-11 17:02:25 +00:00
|
|
|
"sourceMap": false,
|
2019-11-24 08:09:32 +00:00
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2021-08-19 09:33:41 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-11-24 08:09:32 +00:00
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-11 17:02:25 +00:00
|
|
|
"rootDir": "./src",
|
2021-03-23 08:24:40 +00:00
|
|
|
"baseUrl": "./",
|
2021-03-23 08:30:14 +00:00
|
|
|
"paths": {
|
2021-11-11 17:02:25 +00:00
|
|
|
"@/*": ["./src/*"]
|
2021-03-23 08:30:14 +00:00
|
|
|
},
|
2021-11-11 17:02:25 +00:00
|
|
|
"outDir": "./built",
|
2019-11-24 08:09:32 +00:00
|
|
|
"typeRoots": [
|
2021-11-11 17:02:25 +00:00
|
|
|
"./node_modules/@types",
|
2021-03-12 15:18:41 +00:00
|
|
|
"./@types"
|
2020-05-23 14:21:09 +00:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 08:09:32 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2021-11-11 17:02:25 +00:00
|
|
|
"./src/**/*.ts"
|
2019-11-24 08:09:32 +00:00
|
|
|
],
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|