-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
tsconfig.json
49 lines (49 loc) · 1.53 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
47
48
49
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": ["demo/yun/*"],
"@valaxyjs/devtools": ["packages/devtools/src/index.ts"],
"@valaxyjs/*": ["packages/@valaxyjs/*/src/index.ts"],
"valaxy/client/*": ["packages/valaxy/client/*"],
"@valaxyjs/client/*": ["packages/valaxy/client/*"],
"valaxy/package.json": ["packages/valaxy/package.json"],
"valaxy": ["packages/valaxy/shim.ts"],
"valaxy-theme-yun/*": ["packages/valaxy-theme-yun/*"],
"valaxy-theme-yun": ["packages/valaxy-theme-yun/node/index.ts"],
"valaxy-addon-waline": ["packages/valaxy-addon-waline/client/index.ts"],
"valaxy-addon-twikoo": ["packages/valaxy-addon-twikoo/client/index.ts"]
},
"resolveJsonModule": true,
"types": [
"unplugin-vue-router/client",
"vitest",
"vite/client",
"vite-plugin-vue-layouts/client",
"@intlify/unplugin-vue-i18n/messages",
"@types/wicg-file-system-access"
],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
// for type check
"./*.ts",
"./test/*.ts",
"./packages/valaxy/shims.d.ts",
"./packages/**/*.d.ts",
"./packages/**/*.ts",
"./packages/**/*.vue"
],
"exclude": ["**/dist/**", "node_modules", "cache"]
}