boring.tools-poc/apps/api/tsconfig.json
Lars Hampe 971da61e7b
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m54s
feat(api): add clerk webhook security check
2024-09-30 20:57:20 +02:00

27 lines
602 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}