21 lines
472 B
JSON
21 lines
472 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/themes/*": ["./.vuepress/themes/*"],
|
|
"~/components/*": ["./.vuepress/themes/components/*"],
|
|
"~/composables/*": ["./.vuepress/themes/composables/*"],
|
|
"@theme/*": ["../theme/src/client/components/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./.vuepress/**/*"
|
|
],
|
|
"exclude": [
|
|
"./.vuepress/.cache",
|
|
"./.vuepress/.temp",
|
|
"./.vuepress/dist"
|
|
]
|
|
}
|