forked from vuepress/ecosystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 768 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 768 Bytes
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"paths": {
"@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"
]
},
"types": ["vuepress/client-types", "webpack-env", "vite/client"]
},
"include": [
"**/.vuepress/**/*",
"e2e/**/*",
"plugins/**/*",
"themes/**/*",
"tools/**/*",
"scripts/**/*",
"*.config.ts"
],
"exclude": ["node_modules", ".temp", "lib", "dist"]
}