feat(设备导入): 实现CSV导入预览功能并优化导入流程

This commit is contained in:
zhang1106
2026-03-19 16:15:20 +08:00
parent a620575d92
commit b98e8ad9af
5 changed files with 917 additions and 324 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"checkJs": false,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}