hrms-api-org/tsconfig.json

24 lines
558 B
JSON
Raw Permalink Normal View History

2024-01-24 11:39:00 +07:00
{
"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,
2026-02-26 22:10:33 +07:00
"skipLibCheck": true
2024-10-07 14:53:27 +07:00
},
2026-02-26 22:10:33 +07:00
"exclude": [
"src/__tests__/**",
"**/*.spec.ts",
"**/*.test.ts"
]
2024-01-24 11:39:00 +07:00
}