waterwolf-auth/apps/backend/tsconfig.json

32 lines
914 B
JSON
Raw Permalink Normal View History

{
"extends": "../../tsconfig.json", // Extend the config options from the root
"compilerOptions": {
// The following options are not required as they've been moved to the root tsconfig
// "baseUrl": "./",
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
// "incremental": true,
// "skipLibCheck": true,
// "strictNullChecks": true,
// "noImplicitAny": true,
// "strictBindCallApply": true,
// "forceConsistentCasingInFileNames": true,
// "noFallthroughCasesInSwitch": true
"strictPropertyInitialization": false,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"target": "es2021",
"sourceMap": true,
"outDir": "./dist",
"plugins": [
{
"transform": "typia/lib/transform"
}
],
"strictNullChecks": true,
"strict": true
}
}