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