-
Notifications
You must be signed in to change notification settings - Fork 116
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
chore: upgrade to TS version 5.3.2 [] #1600
Conversation
@@ -2,7 +2,6 @@ | |||
"extends": "../../tsconfig.json", | |||
"include": ["src", "types"], | |||
"compilerOptions": { | |||
"module": "esnext", |
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.
wondering what was the motivation behind removing this?
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.
It's defined already in the top-level tsconfig and we just repeat it again and again. As we're already extending the shared tsconfig, I would not repeat similar configurations
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.
Fair enough I only ask because in the packages it's esnext and at the top level it's es2020. Just wanted to make sure this is a conscious change
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.
The module config is actually exnext
on the top level :)
Line 5 in 5bbca86
"module": "esnext", |
@MayaGillilan updated the TS version already on the top level recently. I'm updating it now for all packages inside the repo.