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