-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
54 lines (50 loc) · 1.48 KB
/
tsconfig.node.json
File metadata and controls
54 lines (50 loc) · 1.48 KB
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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*.ts", "src/**/*.vue"],
"compilerOptions": {
/* === Output === */
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* === Language features === */
"jsx": "preserve",
"jsxImportSource": "vue",
"strict": true,
"skipLibCheck": true,
/* === Paths and aliases === */
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
/* === Type inference and tooling === */
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"]
},
/* === Vue Compiler Options (for vue-language-server) === */
"vueCompilerOptions": {
"target": 3.3,
"strictTemplates": true,
"strictVModel": true,
"strictCssModules": true,
"fallthroughAttributes": false,
"checkUnknownProps": true,
"checkUnknownEvents": true,
"resolveStyleClassNames": "scoped",
"inferTemplateDollarRefs": true,
"inferTemplateDollarSlots": true,
"inferComponentDollarRefs": true,
"inferComponentDollarEl": true,
"jsxSlots": false,
"extensions": [".vue"],
"lib": "vue",
"fallthroughComponentNames": ["Transition", "KeepAlive", "Teleport", "Suspense"],
"dataAttributes": ["data-*"],
"htmlAttributes": ["aria-*"]
}
}