Files
lcbp3/backend/tsconfig.json
2025-11-19 11:57:46 +07:00

28 lines
924 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "nodenext",
"resolvePackageJsonExports": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
/* Strict Type-Checking Options */
"strict": true, // บังคับใช้ Strict Mode
"strictNullChecks": true, // ตรวจสอบค่า Null อย่างเคร่งครัด
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true, // ห้ามใช้ Any โดยไม่จำเป็น
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true
}
}