scrummie-poker/tsconfig.app.json

31 lines
638 B
JSON
Raw Permalink Normal View History

2024-10-05 22:11:55 +01:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-10-20 11:40:33 +01:00
"noFallthroughCasesInSwitch": true,
/* Paths */
"baseUrl": ".",
"paths": {
"src/*": ["./src/*"]
}
2024-10-05 22:11:55 +01:00
},
"include": ["src"]
}