refactor: lint

This commit is contained in:
Kevin Deng
2025-11-26 17:12:35 +08:00
parent 620450b5ba
commit 5279b2eb69
33 changed files with 2271 additions and 449 deletions

View File

@@ -1,19 +1,19 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"customConditions": ["dev"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["vitest/globals"],
"allowJs": true,
"strict": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"types": ["vitest/globals"],
"skipLibCheck": true,
"noEmit": true,
"customConditions": ["dev"]
"esModuleInterop": true,
"skipLibCheck": true
}
}