Skip to content

Commit

Permalink
Update ts target
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenguh committed Jun 24, 2020
1 parent f3fa248 commit c1d7348
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"target": "es2018",
"outDir": "out",
"lib": [
"es6"
"es2018"
],
"sourceMap": true,
"rootDir": "src",
Expand All @@ -13,7 +13,7 @@
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"forceConsistentCasingInFileNames": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit c1d7348

Please sign in to comment.