2016-12-28 22:49:51 +00:00
|
|
|
{
|
2019-11-24 08:09:32 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2023-02-22 06:02:39 +00:00
|
|
|
"noEmitOnError": true,
|
2019-11-24 08:09:32 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
2021-03-24 02:05:37 +00:00
|
|
|
"noUnusedLocals": false,
|
2019-11-24 08:09:32 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
2021-11-11 17:02:25 +00:00
|
|
|
"sourceMap": false,
|
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,
|
2022-09-23 21:45:44 +00:00
|
|
|
"skipLibCheck": true,
|
2019-11-24 08:09:32 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-11 17:02:25 +00:00
|
|
|
"rootDir": "./src",
|
2021-03-23 08:24:40 +00:00
|
|
|
"baseUrl": "./",
|
2021-03-23 08:30:14 +00:00
|
|
|
"paths": {
|
2023-02-26 02:28:05 +00:00
|
|
|
"@/*": ["./src/*"]
|
2021-03-23 08:30:14 +00:00
|
|
|
},
|
2021-11-11 17:02:25 +00:00
|
|
|
"outDir": "./built",
|
2022-04-23 03:37:44 +00:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2019-11-24 08:09:32 +00:00
|
|
|
"typeRoots": [
|
2023-09-04 04:33:38 +00:00
|
|
|
"./src/@types",
|
2021-11-11 17:02:25 +00:00
|
|
|
"./node_modules/@types",
|
2023-09-04 04:33:38 +00:00
|
|
|
"./node_modules"
|
2020-05-23 14:21:09 +00:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext"
|
2019-11-24 08:09:32 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
2021-11-11 17:02:25 +00:00
|
|
|
"./src/**/*.ts"
|
2019-11-24 08:09:32 +00:00
|
|
|
],
|
2023-02-26 02:28:05 +00:00
|
|
|
"exclude": [
|
|
|
|
"./src/**/*.test.ts"
|
|
|
|
]
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|