-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
tsconfig.json
37 lines (37 loc) · 1.09 KB
/
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
35
36
37
{
"compilerOptions": {
"target": "es2018",
"jsx": "preserve",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "bundler",
"paths": {
"@vue/devtools-shared": ["./packages/shared/src/index.ts"],
"@vue/devtools-core": ["./packages/core/src/index.ts"],
"@vue/devtools-kit": ["./packages/devtools-kit/src/index.ts"],
"@vue/devtools-ui": ["./packages/ui/src/index.ts"],
"@vue/devtools-ui/theme": ["./packages/ui/theme/index.ts"],
"@vue/devtools-applet": ["./packages/applet/src/index.ts"]
},
"resolveJsonModule": true,
"types": [
"chrome",
"vite/client",
"vitest/globals"
],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": false,
// We use tsup/vite instead of tsc to build the package, so we don't need to care about this option.
// Add outDir option to avoid tsconfig error in monorepo.
"outDir": "dist",
"esModuleInterop": true
},
"exclude": [
"**/vite/src/overlay/**",
"**/dist/**",
"**/node_modules/**",
"**/**/*.js"
]
}