Skip to content

Commit 089149e

Browse files
committed
update tsconfig
1 parent a169ea6 commit 089149e

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

tsconfig.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
"outDir": "build",
44
"module": "esnext",
55
"target": "es5",
6-
"lib": ["es6", "dom", "es2016", "es2017"],
6+
"lib": [
7+
"es6",
8+
"dom",
9+
"es2016",
10+
"es2017"
11+
],
712
"sourceMap": true,
813
"allowJs": false,
914
"jsx": "react",
@@ -14,11 +19,16 @@
1419
"noImplicitThis": true,
1520
"noImplicitAny": true,
1621
"strictNullChecks": true,
17-
"suppressImplicitAnyIndexErrors": true,
22+
"ignoreDeprecations": "5.0",
1823
"noUnusedLocals": true,
1924
"noUnusedParameters": true,
2025
"esModuleInterop": true
2126
},
22-
"include": ["src"],
23-
"exclude": ["node_modules", "build"]
24-
}
27+
"include": [
28+
"src"
29+
],
30+
"exclude": [
31+
"node_modules",
32+
"build"
33+
]
34+
}

0 commit comments

Comments
 (0)