vuepress-theme-plume/tsconfig.json
pengzhanbo b1f996cb0e
feat(plugin-md-power): add ::: encrypt container, close #815 (#831)
* feat(plugin-md-power): add `::: encrypt` container

* chore: tweak

* chore: tweak

* chore: tweak
2026-02-12 23:55:21 +08:00

27 lines
555 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"baseUrl": ".",
"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/**/*"
],
"exclude": [
"**/node_modules/**",
"**/.cache/**",
"**/.temp/**",
"**/lib/**",
"**/dist/**"
]
}