mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-02-01 17:36:51 +00:00
20 lines
460 B
JSON
20 lines
460 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,
|
|
"jsx": "preserve"
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|