feat: 侧边栏开发,降低tailwind版本

This commit is contained in:
2026-04-11 15:45:13 +08:00
parent 4645bf93ff
commit 0c5ab186da
9 changed files with 612 additions and 551 deletions

23
jsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"@/*": ["src/renderer/*"]
},
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"strict": false,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["node"],
"typeRoots": ["./node_modules/@types", "./node_modules"]
},
"include": ["src/**/*", "*.config.mjs", "*.config.js"],
"exclude": ["node_modules", "dist", ".vite"]
}