Skip to content

Commit

Permalink
chore: use es2016 as a TS target
Browse files Browse the repository at this point in the history
  • Loading branch information
cexbrayat committed Jul 27, 2022
1 parent 2f913ac commit 41b5bd4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tsconfig.json
@@ -1,9 +1,13 @@
{
"compilerOptions": {
"target": "es5",
"target": "es2016",
"outDir": "dist",
"module": "esnext",
"lib": ["DOM", "ES2015", "ES2017"],
"lib": [
"DOM",
"ES2015",
"ES2017"
],
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
Expand Down

0 comments on commit 41b5bd4

Please sign in to comment.