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,
|
2024-03-06 18:51:57 -06:00
|
|
|
"noUnusedLocals": false,
|
2019-11-24 02:09:32 -06:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
2023-06-25 07:13:15 -05:00
|
|
|
"target": "ES2022",
|
2023-09-03 23:33:38 -05:00
|
|
|
"module": "nodenext",
|
|
|
|
"moduleResolution": "nodenext",
|
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,
|
2024-03-06 18:51:57 -06:00
|
|
|
"skipLibCheck": true,
|
2019-11-24 02:09:32 -06:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-03-23 03:54:43 -05:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["../src/*"]
|
|
|
|
},
|
2019-11-24 02:09:32 -06:00
|
|
|
"typeRoots": [
|
2021-03-12 09:18:41 -06:00
|
|
|
"../node_modules/@types",
|
|
|
|
"../src/@types"
|
2020-05-23 09:21:09 -05:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2022-09-17 13:27:08 -05:00
|
|
|
],
|
2023-02-25 20:28:05 -06:00
|
|
|
"types": ["jest", "node"]
|
2019-11-24 02:09:32 -06:00
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2023-02-24 01:10:48 -06:00
|
|
|
"./**/*.ts",
|
2023-02-25 20:28:05 -06:00
|
|
|
"../src/**/*.test.ts",
|
2023-06-25 07:13:15 -05:00
|
|
|
"../src/@types/**/*.ts"
|
2019-11-24 02:09:32 -06:00
|
|
|
]
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|