boring.tools-poc/apps/cli/tsconfig.json
Lars Hampe b182329146
All checks were successful
Build and Push Docker Image / tests (push) Successful in 56s
Build and Push Docker Image / build (push) Successful in 3m31s
wip: cli and changelog commit upload
2024-10-25 16:31:59 +02:00

28 lines
635 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"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 (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}