Skip to content

Commit

Permalink
feat(tsconfig): add es2017 lib to tsconfig
Browse files Browse the repository at this point in the history
This enables the user to use the latest additions to javascript like `Object.values` and
`Object.entries`
  • Loading branch information
Poltergeist committed Apr 25, 2018
1 parent d428d2c commit 917321b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"strict": true,
"moduleResolution": "node",
"typeRoots": ["node_modules/@types"],
"lib": ["es6", "dom"]
"lib": ["es6", "dom", "es2017"]
},
"include": ["./packages/index.ts"],
"exclude": ["**/*.test.*", "**/*.stories.*"]
Expand Down

0 comments on commit 917321b

Please sign in to comment.