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