-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
101 lines (97 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": ["ESNext", "DOM", "DOM.Iterable", "WebWorker"],
"baseUrl": ".",
"module": "ESNext",
/* Bundler mode */
"moduleResolution": "bundler",
"paths": {
"~/*": [
"./packages/client/*"
],
"advjs": [
"./packages/advjs/node/index.ts"
],
"@advjs/editor/*": [
"./editor/core/*"
],
"@advjs/client/*": [
"./packages/client/*"
],
"@advjs/examples/*": [
"./packages/examples/*"
],
"@advjs/parser/fs": [
"./packages/parser/src/fs.ts"
],
"@advjs/shared/*": [
"./packages/shared/src/*"
],
"@advjs/theme-default/*": [
"./packages/theme-default/*"
],
"@advjs/client": [
"./packages/client/index.ts"
],
"@advjs/theme-default": [
"./packages/theme-default/index.ts"
],
"@advjs/*": [
"./packages/*/src/index.ts"
],
"advjs/*": [
"./packages/advjs/*"
]
},
"resolveJsonModule": true,
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts/issues/111#issuecomment-1549482642
"resolvePackageJsonExports": false,
"types": [
"@types/wicg-file-system-access",
"@webgpu/types",
"@babylonjs/core",
"@babylonjs/loaders",
"@babylonjs/gui",
"@babylonjs/materials",
"babylon-vrm-loader",
"vitepress/client",
"node",
"vitest",
"vite/client",
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts/issues/111#issuecomment-1549482642
"vite-plugin-vue-layouts/client.d.ts",
"vite-plugin-pwa/client",
"unplugin-vue-router/client"
],
"allowImportingTsExtensions": true,
"allowJs": true,
// lint
"strict": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": [
"./*.ts",
// disable for VPHero.vue
// "./docs/.vitepress/**/*.ts",
// "./docs/.vitepress/**/*.vue",
"./editor/**/*.ts",
"./packages/global.d.ts",
"./packages/**/*.ts",
"./packages/**/*.vue"
],
"exclude": [
"**/dist/**",
"**/node_modules/**",
"editor/**"
]
}