vuepress-theme-plume/docs/tsconfig.json
pengzhanbo bfd0c8409c
feat(plugin-md-power): compat obsidian official markdown syntax (#890)
* feat(plugin-md-power): compat obsidian official markdown syntax

* chore: tweak

* chore: tweak

* chore: tweak

* chore: tweak
2026-04-18 17:01:41 +08:00

22 lines
505 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"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"
]
}