twenty/server/tsconfig.json

27 lines
687 B
JSON
Raw Normal View History

2022-12-01 17:58:08 +03:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"esModuleInterop": true,
2022-12-01 17:58:08 +03:00
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./",
2022-12-01 17:58:08 +03:00
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
2023-04-24 16:00:37 +03:00
"strictNullChecks": true,
"alwaysStrict": true,
2022-12-01 17:58:08 +03:00
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2023-04-24 16:00:37 +03:00
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true
2022-12-01 17:58:08 +03:00
}
}