mirror of
https://github.com/WuKongIM/WuKongIMDocs
synced 2025-06-05 08:53:41 +00:00
24 lines
395 B
JSON
24 lines
395 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vitepress"
|
|
],
|
|
},
|
|
"include": [
|
|
".vitepress/**/*.ts",
|
|
".vitepress/**/*.vue",
|
|
"src/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".vitepress/dist"
|
|
]
|
|
}
|