Files
web-cad/backend/tsconfig.json
T

20 lines
495 B
JSON
Raw Normal View History

2026-06-21 20:32:27 +00:00
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
2026-06-21 20:32:27 +00:00
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
2026-06-21 20:32:27 +00:00
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
2026-06-21 20:32:27 +00:00
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}