This commit is contained in:
2026-04-23 18:17:17 +08:00
parent 3a7b48e483
commit 9890864e5c
76 changed files with 1096 additions and 1631 deletions

31
tsconfig.base.json Normal file
View File

@@ -0,0 +1,31 @@
{
"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"
]
}