Skip to content

Commit 2ab399a

Browse files
committed
feat: requires ES2015
1 parent 5633e7b commit 2ab399a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"esModuleInterop": true,
77
"newLine": "LF",
88
"outDir": "./lib/",
9-
"target": "es5",
9+
"target": "ES2015",
1010
"sourceMap": true,
1111
"declaration": true,
1212
"jsx": "preserve",
@@ -24,7 +24,8 @@
2424
/* Report error when not all code paths in function return a value. */
2525
"noImplicitReturns": true,
2626
/* Report errors for fallthrough cases in switch statement. */
27-
"noFallthroughCasesInSwitch": true
27+
"noFallthroughCasesInSwitch": true,
28+
"skipLibCheck": true
2829
},
2930
"include": [
3031
"src/**/*"

0 commit comments

Comments
 (0)