-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
46 lines (46 loc) · 1.18 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
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"mixte": ["./packages/mixte/index.ts"],
"@mixte/use/register": ["./packages/use/src/register.ts"],
"@mixte/use/nuxt": ["./packages/use/src/nuxt.ts"],
"@mixte/components/*": ["./packages/components/src/*/index.ts"],
"@mixte/validator/*": ["./packages/validator/src/*/index.ts"],
"@mixte/snippets/*": ["./packages/snippets/src/*/index.ts"],
"@mixte/*": ["./packages/*/index.ts"],
"@/*": ["./packages/*"],
"@@/*": ["./*"]
},
"resolveJsonModule": true,
"types": [
"vite/client",
"vitest/globals",
"element-plus/global",
"naive-ui/volar"
],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"meta",
"scripts",
"packages",
"packages/.vitepress/**/*.ts",
"packages/.vitepress/**/*.vue",
"*.{ts,vue}"
],
"exclude": [
"**/dist/**",
"**/node_modules/**",
"coverage"
]
}