-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtsconfig.json
34 lines (34 loc) · 932 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"paths": {
"@internal/noticeOptions": [
"./plugins/plugin-notice/src/client/noticeOptions.d.ts"
],
"@internal/searchIndex": [
"./plugins/plugin-search/src/client/searchIndex.d.ts"
],
"@internal/themeData": [
"./plugins/plugin-theme-data/src/client/themeData.d.ts"
],
"@theme/*": [
"./themes/theme-default/src/client/components/*",
"./themes/theme-default/src/client/composables/*.js",
"./themes/theme-default/src/client/utils/*.js"
]
},
"types": ["vuepress/client-types", "webpack-env", "vite/client"]
},
"include": [
"**/.vuepress/**/*",
"e2e/**/*",
"plugins/**/*",
"themes/**/*",
"tools/**/*",
"scripts/**/*",
"*.config.ts"
],
"exclude": ["node_modules", ".temp", "lib", "dist"]
}