mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
e0a6ef2b9e
Co-authored-by: bluwy <bjornlu.dev@gmail.com>
23 lines
504 B
JSON
23 lines
504 B
JSON
{
|
|
"include": ["**/vite*config*", "**/*.ts"],
|
|
"exclude": ["**/dist/**"],
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"jsx": "preserve",
|
|
"types": ["vite/client", "node"],
|
|
"paths": {
|
|
"~utils": ["./test-utils.ts"]
|
|
}
|
|
}
|
|
}
|