Files
defgov/tsconfig.base.json
2026-04-23 18:17:17 +08:00

32 lines
683 B
JSON

{
"compilerOptions": {
"module": "nodenext",
"target": "es2022",
"lib": ["es2022", "dom"],
"jsx": "react-jsx",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noErrorTruncation": false,
"allowJs": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noUncheckedSideEffectImports": true,
"paths": {}
},
"exclude": [
"**/.*/",
"**/build",
"**/build-tests",
"**/node_modules",
"docs/export",
"**/dist",
"**/example",
"**/scripts",
"**/stories",
"**/vite.config.ts"
]
}