TS_ExpressStarter/tsconfig.json
Jo a3bfaf4d93 feat: create starter TS setup with express
feat: add CSS examples
feat: add img example
feat: add views example
feat: add .env example
feat: add example interface
feat: add logger util
2024-03-18 02:18:45 +01:00

27 lines
No EOL
627 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 (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}