hrms-api-org/tsconfig.json
waruneeauy 693afddc22
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m29s
fix
2026-02-26 22:10:33 +07:00

23 lines
558 B
JSON

{
"compilerOptions": {
"incremental": true,
"outDir": "dist",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strictPropertyInitialization": false,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"skipLibCheck": true
},
"exclude": [
"src/__tests__/**",
"**/*.spec.ts",
"**/*.test.ts"
]
}