forked from 100askTeam/RTOS-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 910 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"paths": {
"@internal/searchIndex": [
"./ecosystem/plugin-search/src/client/searchIndex.d.ts"
],
"@internal/themeData": [
"./ecosystem/plugin-theme-data/src/client/themeData.d.ts"
],
"@internal/*": ["./packages/client/src/types/internal/*.d.ts"],
"@theme/*": ["./ecosystem/theme-default/src/client/components/*"],
"@vuepress/*": ["./packages/*/src"],
"vuepress": ["./ecosystem/vuepress/src"],
"vuepress-vite": ["./ecosystem/vuepress-vite/src"],
"vuepress-webpack": ["./ecosystem/vuepress-webpack/src"]
},
"types": ["webpack-env", "vite/client"]
},
"include": [
"**/.vuepress/**/*",
"ecosystem/**/*",
"packages/**/*",
"vitest.config.ts"
],
"exclude": ["node_modules", ".temp", "lib", "dist"]
}