2024-04-26 16:38:08 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
// Enable latest features
|
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"jsx": "react-jsx",
|
2024-07-23 07:12:54 +00:00
|
|
|
"jsxImportSource": "nano-jsx/esm",
|
2024-04-26 16:38:08 +00:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
}
|