Files
Homarr/apps/nestjs/tsconfig.json
2024-03-03 21:07:27 +01:00

20 lines
459 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": ".",
"incremental": true,
"skipLibCheck": true
},
"include": ["src/**/*", "vite.config.ts"]
}