Files
docmost_custom/apps/server/tsconfig.json
T

22 lines
547 B
JSON
Raw Normal View History

2023-08-03 17:04:35 +01:00
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
2024-03-16 22:58:12 +00:00
"noFallthroughCasesInSwitch": false,
2023-08-03 17:04:35 +01:00
}
}