vuepress-theme-plume/docs/tsconfig.json
2025-04-22 15:05:08 +08:00

20 lines
416 B
JSON

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