Refactor code structure for improved readability and maintainability

This commit is contained in:
duanshuwen
2026-07-01 10:43:30 +08:00
parent 50e9b32806
commit b9a57fe03c
19 changed files with 1318 additions and 123 deletions

View File

@@ -7,6 +7,7 @@
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"ignoreDeprecations": "6.0",
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
@@ -14,7 +15,11 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"]
}