iceshrimp-legacy/packages/backend/tsconfig.json

49 lines
938 B
JSON
Raw Permalink Normal View History

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,
"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",
"module": "es2020",
2019-11-24 09:09:32 +01:00
"moduleResolution": "node",
"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,
"isolatedModules": false,
2021-11-11 18:02:25 +01:00
"rootDir": "./src",
"baseUrl": "./",
2021-03-23 09:30:14 +01:00
"paths": {
2022-04-23 05:37:44 +02:00
"@/*": [
"./src/*"
]
2021-03-23 09:30:14 +01:00
},
2021-11-11 18:02:25 +01:00
"outDir": "./built",
2022-04-23 05:37:44 +02:00
"types": [
"node"
],
2019-11-24 09:09:32 +01:00
"typeRoots": [
2021-11-11 18:02:25 +01:00
"./node_modules/@types",
2022-02-03 13:20:25 +01:00
"./src/@types"
],
"lib": [
"esnext"
2019-11-24 09:09:32 +01:00
]
},
"compileOnSave": false,
"include": [
2021-11-11 18:02:25 +01:00
"./src/**/*.ts"
2019-11-24 09:09:32 +01:00
],
2016-12-28 23:49:51 +01:00
}