2025-01-18 19:44:45 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-02-23 15:36:04 +01:00
|
|
|
// Typechecking
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-01-18 19:44:45 +00:00
|
|
|
|
2025-02-23 15:36:04 +01:00
|
|
|
// Modules
|
|
|
|
|
"module": "ESNext",
|
2025-01-18 19:44:45 +00:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
2025-02-23 15:36:04 +01:00
|
|
|
"allowImportingTsExtensions": true,
|
2025-03-09 12:00:12 +01:00
|
|
|
"types": ["tuono/build-client"],
|
2025-02-23 15:36:04 +01:00
|
|
|
|
|
|
|
|
// Interop Constraints
|
2025-01-18 19:44:45 +00:00
|
|
|
"isolatedModules": true,
|
2025-02-23 15:36:04 +01:00
|
|
|
|
|
|
|
|
// Language and Environment
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"useDefineForClassFields": true,
|
2025-01-18 19:44:45 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
2025-02-23 15:36:04 +01:00
|
|
|
// Emit
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
|
|
|
|
|
// Completeness
|
|
|
|
|
"skipLibCheck": true
|
2025-01-18 19:44:45 +00:00
|
|
|
},
|
2025-04-20 11:04:48 +02:00
|
|
|
"include": ["src", "tuono.config.ts", "./.tuono/types.ts"]
|
2025-01-18 19:44:45 +00:00
|
|
|
}
|