Skip to content

Commit

Permalink
fix(engine): set ts target to es2021
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for EOL nodejs, now support - version > 16.0.0
  • Loading branch information
Avivbens committed Jan 20, 2024
1 parent 2adc9f2 commit fa8808e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"prepublish": "npm run build",
"pre-commit": "pretty-quick --staged"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/Avivbens/rx-parallel",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"lib": ["es2017", "es7", "es6", "DOM"],
"lib": ["ES2021"],
"module": "Node16",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
Expand All @@ -22,7 +22,7 @@
"strictBindCallApply": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"target": "es2017",
"target": "ES2021",
"useUnknownInCatchVariables": false
},
"exclude": ["node_modules"],
Expand Down

0 comments on commit fa8808e

Please sign in to comment.