bunext/tsconfig.json
2026-03-21 10:20:16 +01:00

30 lines
757 B
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"outDir": "dist",
"declaration": true
},
"include": ["src"],
"exclude": [
"node_modules",
"dist",
"src/__tests__",
"**/__tests__",
"__tests__"
]
}