mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
29 lines
548 B
JSON
29 lines
548 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"module": "ES2020",
|
|
"paths": {
|
|
"@theme-plume/*": [
|
|
"./packages/theme/src/client/components/*"
|
|
],
|
|
"@internal/*": [
|
|
"./docs/.vuepress/.temp/internal/*"
|
|
]
|
|
},
|
|
"types": ["webpack-env", "vite/client", "@vuepress/client/types"]
|
|
},
|
|
"include": [
|
|
"packages/**/*",
|
|
"docs/.vuepress/**/*",
|
|
"scripts/**/*",
|
|
"./lerna.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".temp",
|
|
"lib",
|
|
"dist"
|
|
]
|
|
}
|