-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.base.json
52 lines (52 loc) · 1021 Bytes
/
tsconfig.base.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"paths": {
// Vuepress default theme
"@theme/*": [
"node_modules/@vuepress/theme-default/lib/client/components/*"
],
// Our custom theme
"@mptheme/*": [
"src/.vuepress/theme/*"
],
"@Public/*": [
"src/.vuepress/public/*"
]
},
"resolveJsonModule": true,
"types": [
"@vuepress/client",
"vite/client",
"vitest/globals"
]
},
"include": [
"*.cjs",
"*.js",
"*.mjs",
"*.ts",
"private/**/*",
"src/**/*",
"src/.vuepress/**/*",
"test/**/*",
"types/**/*"
],
"exclude": [
"**/.vuepress/.cache",
"**/.vuepress/.temp",
"**/.vuepress/dist",
"**/node_modules"
]
}