Skip to content

Commit

Permalink
feat: target node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
FauxFaux committed Jun 19, 2022
1 parent efdde46 commit 2810266
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

defaults: &defaults
docker:
- image: node:10
- image: cimg/node:12.13
working_directory: ~/graphlib

commands:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
release:
<<: *defaults
docker:
- image: node:10
- image: cimg/node:12.13
steps:
- checkout_and_merge
- run:
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"outDir": "./dist",
"target": "es2017",
"lib": ["es2017"],
"target": "es2019",
"lib": ["es2019"],
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"allowJs": true,
Expand Down

0 comments on commit 2810266

Please sign in to comment.