Is there any way to start nodeJS with additional command line parameters?
like:
--harmony_generators
--harmony_arrow_functions
UPD:
workaround for now:
create .bat (windows) file with:
- {{path-to-node}}\node.exe --harmony_generators --harmony_arrow_functions %*
add path to your .bat file as source of runtimeExecutable in .\settings\launch.json
profit :)