-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Some improvements to rollup and ts config #3641
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "compilerOptions": { | ||
| "module": "commonjs", | ||
| "target": "es2018", | ||
| "target": "es2019", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where do I look which es version is supported on node which is shipped with VS Code? Like, how can I check what's the highest target we can use here?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't seem clear-cut, but https://node.green/#ES2019.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @matklad for reference, this is the table I was looking at: https://kangax.github.io/compat-table/es2016plus/#chrome78. You will have to "show obsolete platforms" checkbox in the top left. |
||
| "outDir": "out", | ||
| "lib": [ | ||
| "es2019" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.