Skip to content

Commit

Permalink
feat(nodejs): require >= 12
Browse files Browse the repository at this point in the history
  • Loading branch information
grantila committed Mar 21, 2021
1 parent f7f4589 commit 41bc8bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"types": "./dist/index.d.ts",
"directories": {},
"engines": {
"node": ">=10"
"node": ">=12"
},
"files": [
"dist"
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"allowJs": false,
"declaration": true,
"sourceMap": true,
"lib": [ "ES2017" ],
"lib": [ "ES2019" ],
"types": [
"node",
"jest"
],
"outDir": "dist",
"target": "ES2017",
"target": "ES2019",
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitAny": true,
Expand Down

0 comments on commit 41bc8bb

Please sign in to comment.