iceshrimp-legacy/packages/backend/tsconfig.json

44 lines
898 B
JSON
Raw 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,
2019-11-24 09:09:32 +01:00
"target": "es2017",
"module": "commonjs",
"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": true,
2021-11-11 18:02:25 +01:00
"rootDir": "./src",
"baseUrl": "./",
2021-03-23 09:30:14 +01:00
"paths": {
2021-11-11 18:02:25 +01:00
"@/*": ["./src/*"]
2021-03-23 09:30:14 +01:00
},
2021-11-11 18:02:25 +01:00
"outDir": "./built",
2019-11-24 09:09:32 +01:00
"typeRoots": [
2021-11-11 18:02:25 +01:00
"./node_modules/@types",
2021-03-12 16:18:41 +01:00
"./@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
}