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