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,
|
2021-11-11 11:02:25 -06:00
|
|
|
"sourceMap": false,
|
2022-07-31 00:20:10 -05:00
|
|
|
"target": "es2021",
|
2022-02-26 20:07:39 -06:00
|
|
|
"module": "es2020",
|
2019-11-24 02:09:32 -06:00
|
|
|
"moduleResolution": "node",
|
2021-08-19 04:33:41 -05:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-11-24 02:09:32 -06:00
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-11 11:02:25 -06:00
|
|
|
"rootDir": "./src",
|
2021-03-23 03:24:40 -05:00
|
|
|
"baseUrl": "./",
|
2021-03-23 03:30:14 -05:00
|
|
|
"paths": {
|
2022-04-22 22:37:44 -05:00
|
|
|
"@/*": [
|
|
|
|
"./src/*"
|
|
|
|
]
|
2021-03-23 03:30:14 -05:00
|
|
|
},
|
2021-11-11 11:02:25 -06:00
|
|
|
"outDir": "./built",
|
2022-04-22 22:37:44 -05:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2019-11-24 02:09:32 -06:00
|
|
|
"typeRoots": [
|
2021-11-11 11:02:25 -06:00
|
|
|
"./node_modules/@types",
|
2022-02-03 06:20:25 -06:00
|
|
|
"./src/@types"
|
2020-05-23 09:21:09 -05:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 02:09:32 -06:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2021-11-11 11:02:25 -06:00
|
|
|
"./src/**/*.ts"
|
2019-11-24 02:09:32 -06:00
|
|
|
],
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|