mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 22:59:10 +00:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"include": ["."],
|
|
"exclude": ["**/dist/**"],
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"outDir": "dist",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"types": ["vite/client", "vitest/globals", "node"],
|
|
"paths": {
|
|
"~utils": ["./test-utils.ts"]
|
|
}
|
|
}
|
|
}
|