Skip to content

Commit

Permalink
fix(tsconfig): use es6 (#12)
Browse files Browse the repository at this point in the history
since consumers still seem to dislike es7
  • Loading branch information
cajubelt authored Sep 6, 2022
1 parent f3d4fd6 commit 9535dc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"baseUrl": ".",
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": ["es7", "es2017"],
"target": "es6",
"lib": ["es6", "es2016"],
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit 9535dc8

Please sign in to comment.