hypr-login/lib/tsconfig.json
2025-03-14 20:00:50 +07:00

26 lines
592 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "nodenext",
"moduleResolution": "nodenext",
"moduleDetection": "force",
"declaration": true,
"jsx": "react-jsx",
"allowJs": true,
"rootDir": "src",
"outDir": "dist",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}