Skip to content

Commit

Permalink
feat: drop node v10 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
* drops Node v10 support
  • Loading branch information
gajus committed May 17, 2021
1 parent 65263d0 commit cfe84eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -47,7 +47,7 @@
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10"
"node": ">=12"
},
"keywords": [
"log",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"esModuleInterop": true,
"lib": [
"es2018"
"es2020"
],
"module": "commonjs",
"moduleResolution": "node",
Expand All @@ -15,7 +15,7 @@
"outDir": "dist",
"skipLibCheck": true,
"strict": true,
"target": "es2018"
"target": "es2020"
},
"exclude": [
"dist",
Expand Down

0 comments on commit cfe84eb

Please sign in to comment.