vitest/docs/tsconfig.json
Joaquín Sánchez 8d4acb5b07
docs: prefetch avatar images (#895)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-03-08 03:14:41 +08:00

33 lines
697 B
JSON

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