Files
FEDEO/backend/tsconfig.json
2026-01-06 12:07:43 +01:00

16 lines
367 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021"],
"module": "commonjs",
"outDir": "dist",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmitOnError": false,
"forceConsistentCasingInFileNames": true,
"rootDir": "."
},
"include": ["src","db","*.ts"],
"exclude": ["node_modules", "dist"]
}