mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
25 lines
560 B
JSON
25 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"lib": ["esnext", "dom"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"inlineSourceMap": true,
|
|
"paths": {
|
|
"vitest": ["./packages/vitest/src/index.ts"],
|
|
"vitest/global.d.ts": ["./packages/vitest/global.d.ts"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/dist/**"
|
|
]
|
|
}
|