vuepress-theme-plume/tsconfig.json
2025-08-10 23:40:48 +08:00

28 lines
650 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@internal/md-power/replEditorData": ["./plugins/plugin-md-power/src/client/shim.d.ts"],
"@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/**"
]
}