egirlskey/packages/backend/tsconfig.json

51 lines
993 B
JSON
Raw Normal View History

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,
"noUnusedLocals": false,
2019-11-24 08:09:32 +00:00
"noFallthroughCasesInSwitch": true,
"declaration": false,
2021-11-11 17:02:25 +00:00
"sourceMap": false,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node16",
"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",
"baseUrl": "./",
2021-03-23 08:30:14 +00:00
"paths": {
"@/*": ["./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": [
2021-11-11 17:02:25 +00:00
"./node_modules/@types",
2022-02-03 12:20:25 +00:00
"./src/@types"
],
"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
],
"exclude": [
"./src/**/*.test.ts"
]
2016-12-28 22:49:51 +00:00
}