vuepress-theme-plume/docs/tsconfig.json
pengzhanbo 385059f214
docs: update en docs (#708)
* docs: update en docs

* chore: tweak

* chore: tweak

* chore: tweak
2025-10-09 15:46:05 +08:00

21 lines
472 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/themes/*": ["./.vuepress/themes/*"],
"~/components/*": ["./.vuepress/themes/components/*"],
"~/composables/*": ["./.vuepress/themes/composables/*"],
"@theme/*": ["../theme/src/client/components/*"]
}
},
"include": [
"./.vuepress/**/*"
],
"exclude": [
"./.vuepress/.cache",
"./.vuepress/.temp",
"./.vuepress/dist"
]
}