2026-05-18 09:12:14 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"lib": ["ES2020", "DOM"],
|
2026-05-18 12:39:57 +08:00
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
}
|
2026-05-18 09:12:14 +08:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
|
|
|
}
|