Skip to content

Commit

Permalink
chore: drop support for node < v14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Minimum supported node version v14
  • Loading branch information
plasticrake committed Jul 11, 2022
1 parent 7c43e62 commit 0f3d81b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2019,
project: ['./tsconfig.json', './tsconfig.eslint.json'],
},
env: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"typescript": "^4.5.5"
},
"engines": {
"node": ">=12.20.0"
"node": ">=14"
},
"standard-version": {
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es2018",
"lib": ["es2018"],
"target": "es2019",
"lib": ["es2019"],
"allowJs": true, // temporary relaxing
"alwaysStrict": true,
"declaration": true,
Expand Down

0 comments on commit 0f3d81b

Please sign in to comment.