Sharkey/packages/backend/tsconfig.json

52 lines
1,018 B
JSON
Raw Normal View History

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