-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
40 lines (40 loc) · 965 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"composite": true,
"target": "ESNext",
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"jsxImportSource": "vue",
"lib": [
"esnext",
"DOM",
"DOM.Iterable"
],
"useDefineForClassFields": true,
"baseUrl": "./",
"customConditions": [
"development"
],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"declaration": true,
"declarationMap": false,
"importHelpers": true,
"importsNotUsedAsValues": "error",
"preserveValueImports": true,
"sourceMap": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"ignoreDeprecations": "5.0"
},
"reflection": true
}