-
Notifications
You must be signed in to change notification settings - Fork 10
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
Conditional Region Support #268
Conversation
Could we run that again? @phschaad |
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.
See question
tsconfig.json
Outdated
@@ -1,10 +1,10 @@ | |||
{ | |||
"compilerOptions": { | |||
"module": "commonjs", | |||
"target": "ES2022", | |||
"target": "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.
oh dear why. Which feature necessitates this and is there good support in Electron?
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.
Very good catch, I don't recall why I modified this. I have reverted it to ES2022, which is also what the webclient now depends on following this PR: spcl/dace-webclient#181
Note that we would in theory be fine with ESNext
, as VSCode's version of Electron uses a version of the V8 engine which supports quite a few features that are not even in the most recent ECMA standard yet, but this is definitely the safer option.
Make sure the extension works with Conditoinal regions and Loop regions, to the extent they will be present / used in DaCe 1.0.
Relies on spcl/dace-webclient#180.