mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-17 14:59:34 +08:00
23 lines
598 B
JSON
23 lines
598 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"types": ["node", "vite/client"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"jsxImportSource": "vue",
|
|
"baseUrl": "."
|
|
},
|
|
|
|
"include": ["docs/.vitepress/**/*.ts", "docs/.vitepress/**/*.tsx", "docs/vite.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|