vitest/docs/tsconfig.json
2022-06-03 19:01:25 +08:00

32 lines
660 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "esnext",
"target": "esnext",
"lib": ["DOM", "ESNext"],
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
"vite-plugin-pwa/client",
"vitepress"
],
"paths": {
"~/*": ["src/*"]
}
},
"include": [
"./*.ts",
"./.vitepress/**/*.ts",
"./.vitepress/**/*.vue"
],
"exclude": ["dist", "node_modules"]
}