Files
deepdrft/DeepDrftWeb/tsconfig.json
T
daniel-c-harvey a5b7ab041e Deployment Configuration and Script
- Front End Cleanup
2025-09-06 18:40:32 -04:00

20 lines
370 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "ES6", // or "ESNext"
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"outDir": "wwwroot/js"
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules",
"bin/**/*",
"obj/**/*"
]
}