-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
40 lines (39 loc) · 900 Bytes
/
tsconfig.base.json
File metadata and controls
40 lines (39 loc) · 900 Bytes
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
{
"files": [
"lib/js/typings.d.ts",
"lib/js/vue-custom.d.ts"
],
"compilerOptions": {
"module": "esnext",
"importHelpers": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./lib/js",
"esModuleInterop": true,
"moduleResolution": "node",
"noImplicitReturns": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strictBindCallApply": true,
// Re-enable after https://github.com/vuejs/core/issues/4668 is fixed
// "noUnusedParameters": true,
"strictFunctionTypes": true,
"target": "es2019",
"strictNullChecks": true,
"paths": {
"design-system/lib/*": [
"lib/*"
]
},
"declaration": true,
"declarationDir": "dist"
},
"include": [
"lib/js/**/*.vue",
"lib/js/**/*.ts"
],
"typeRoots": [
"node_modules/@types"
]
}