-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtsconfig.json
40 lines (38 loc) · 1004 Bytes
/
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
{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["env.d.ts",
"src/**/*.ts", "src/**/*.vue"
//, "plugins/*.ts"],
],
"compilerOptions": {
//"importsNotUsedAsValues": "preserve",
"isolatedModules": true,
//"preserveValueImports": false,
//"allowJs": true,
"resolveJsonModule": true,
//"outDir": "./docs",
//"declaration": true,
//"rootDir": "./",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"lib": [
// Should target at least ES2016 in Vue 3
// Support for newer versions of language built-ins are
// left for the users to include, because that would require:
// - either the project doesn't need to support older versions of browsers;
// - or the project has properly included the necessary polyfills.
// "ES2016",
"DOM",
"DOM.Iterable",
"ES2020"
],
"types": ["node"]
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}