-
Notifications
You must be signed in to change notification settings - Fork 72
/
tsconfig.json
53 lines (53 loc) · 1.25 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
{
"compilerOptions": {
"removeComments": true,
"disableSizeLimit": true,
"target": "ESNext",
"module": "ESNext",
"strict": true,
"allowJs": true,
"noEmit": true,
"jsx": "preserve",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"verbatimModuleSyntax": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"vue",
"unplugin-vue-macros/macros-global",
"@vue-macros/reactivity-transform/macros-global",
"vite/client",
"vitest/globals",
"vitest",
"./types/imports.d.ts",
"./types/components.d.ts"
],
"paths": {
"@/*": ["./src/*"],
"@/types": ["./types"]
},
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"]
},
"vueCompilerOptions": {
"plugins": ["unplugin-vue-macros/volar"]
},
"include": [
"*.mjs",
"*.ts",
"*.d.ts",
"types/**/*.d.ts",
"src/**/*.ts",
"src/**/*.vue",
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
"src/**/*.d.ts"
],
"exclude": ["node_modules", "dist"]
}