mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"include": ["build.config.ts", "src"],
|
|
"exclude": ["**/*.spec.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"vite": ["../vite/src/node/index.js"]
|
|
}
|
|
}
|
|
}
|