fix: add vite-env.d.ts, remove broken lint script, clean config

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-07 20:49:04 +07:00
co-authored by Claude Sonnet 4.6
parent 65b1e59135
commit 99a5e9b0f7
3 changed files with 2 additions and 3 deletions
-1
View File
@@ -6,7 +6,6 @@
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run"
},
+1
View File
@@ -0,0 +1 @@
/// <reference types="vite/client" />
+1 -2
View File
@@ -7,7 +7,6 @@ export default defineConfig({
test: {
globals: true,
environment: "jsdom",
setupFiles: [],
passWithNoTests: true,
},
});