mirror of
https://github.com/Moe-Sakura/frontend.git
synced 2026-04-06 08:45:05 +08:00
- Disabled the 'no-useless-assignment' rule in ESLint to accommodate <script setup> syntax in Vue components. - Updated build and typecheck scripts in package.json for improved development workflow. - Upgraded various dependencies, including ESLint, TypeScript, and Vue-related packages, to their latest versions for better performance and compatibility. - Adjusted tsconfig settings for module resolution and removed unused options to streamline configuration.
12 lines
192 B
JSON
12 lines
192 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|
|
|