mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 22:59:10 +00:00
4d9363ad6b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: patak <matias.capeletto@gmail.com>
23 lines
507 B
JSON
23 lines
507 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"],
|
|
},
|
|
},
|
|
}
|