mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
32 lines
663 B
JSON
32 lines
663 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pwa/client",
|
|
"vitepress"
|
|
],
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./*.ts",
|
|
"./.vitepress/**/*.ts",
|
|
"./.vitepress/**/*.vue"
|
|
],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|