2024-07-27 11:33:34 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-12-01 16:40:58 +01:00
|
|
|
// Typechecking
|
2024-07-27 11:33:34 +02:00
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2024-11-30 21:37:02 +01:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-12-01 16:40:58 +01:00
|
|
|
|
|
|
|
|
// Modules
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
2024-11-30 21:37:02 +01:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
2024-12-01 16:40:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Emit
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
|
|
|
|
|
// JavaScript Support
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
|
|
|
|
|
// Interop Constraints
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
|
|
|
|
|
// Language and Environment
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
// Completeness
|
|
|
|
|
"skipLibCheck": true
|
2024-07-27 11:33:34 +02:00
|
|
|
},
|
2024-12-18 09:54:52 +01:00
|
|
|
"include": ["src", "tuono.config.ts", "postcss.config.js"]
|
2024-07-27 11:33:34 +02:00
|
|
|
}
|