27 lines
668 B
JSON
27 lines
668 B
JSON
{
|
|
"extends": "../tsconfig.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"]
|
|
},
|
|
"include": [
|
|
"./.vitepress/**/*.ts",
|
|
"./.vitepress/**/*.vue",
|
|
"./.vitepress/components.d.ts",
|
|
"../global.d.ts"
|
|
],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|