iceshrimp-legacy/src/tsconfig.json

47 lines
926 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,
"sourceMap": true,
"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,
"rootDir": "./",
"baseUrl": "./",
2021-03-23 09:30:14 +01:00
"paths": {
"@/*": ["./*"]
},
"outDir": "../built",
2019-11-24 09:09:32 +01:00
"typeRoots": [
2021-03-12 16:18:41 +01:00
"../node_modules/@types",
"./@types"
],
"lib": [
"esnext"
2019-11-24 09:09:32 +01:00
]
},
"compileOnSave": false,
"include": [
2021-03-12 16:18:41 +01:00
"./**/*.ts"
2019-11-24 09:09:32 +01:00
],
"exclude": [
2021-03-12 16:18:41 +01:00
"./client/**/*.ts"
2019-11-24 09:09:32 +01:00
]
2016-12-28 23:49:51 +01:00
}