mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
28 lines
582 B
JSON
28 lines
582 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/**/*",
|
|
"**/tsdown.config.ts"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/.cache/**",
|
|
"**/.temp/**",
|
|
"**/lib/**",
|
|
"**/dist/**"
|
|
]
|
|
}
|