vuepress-theme-plume/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

27 lines
562 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"paths": {
"@internal/*": ["./docs/.vuepress/.temp/internal/*"],
"@theme/*": ["./theme/src/client/components/*"]
},
"types": ["webpack-env", "vite/client", "vuepress/client-types"]
},
"include": [
"plugins/**/*",
"theme/**/*",
"docs/.vuepress/**/*",
"cli/**/*",
"scripts/**/*",
"**/tsdown.config.ts"
],
"exclude": [
"**/node_modules/**",
"**/.cache/**",
"**/.temp/**",
"**/lib/**",
"**/dist/**"
]
}