-
Notifications
You must be signed in to change notification settings - Fork 150
Remove support for node 16 #936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -3,7 +3,8 @@ | |||
"compilerOptions": { | |||
"baseUrl": ".", | |||
"outDir": ".", | |||
"rootDir": "." | |||
"rootDir": ".", | |||
"useDefineForClassFields": false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our tests were failing before adding this.
We can either use this option or update our test code.
microsoft/TypeScript#52331
tsconfig.base.json
Outdated
@@ -7,7 +7,7 @@ | |||
"pretty": true, | |||
"module": "Node16", | |||
"moduleResolution": "Node16", | |||
"target": "ES2021", | |||
"target": "ES2022", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated to this because of this recommendation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one nit.
@@ -11,13 +11,13 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
version: [16, 18, 20] | |||
version: [18, 20, 22] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will this break CI since we'll still be using assert
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, forgot to remove that as I was splitting out. Removed now.
WHY are these changes introduced?
Fixes #0000
WHAT is this pull request doing?
Type of change
Checklist
yarn changeset
to create a draft changelog entry (do NOT update theCHANGELOG.md
files manually)