Skip to content

Commit

Permalink
target ES2016, drop node 7,8,9
Browse files Browse the repository at this point in the history
  • Loading branch information
jbielick committed Aug 11, 2020
1 parent cfeffd8 commit 1c23c1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
sudo: required
language: node_js
node_js:
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
services:
- docker
before_script:
Expand All @@ -21,4 +20,4 @@ script:
- npm run build
- npm test
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls'
- "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
"declaration": true,
"rootDir": "./src",
"outDir": "./lib",
"lib": ["ES2016"],
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "CommonJS",
"target": "ES6",
"target": "ES2016",
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitReturns": true,
Expand Down

0 comments on commit 1c23c1c

Please sign in to comment.