ecmascript 6 - Is it possible to use Typescript and ES6 in extension development in Visual Studio Code? -
when set target
es6
, seems alright - until point use feature requires --harmony
flag, default parameters.
it seems way fix pass e.g. --harmony-default-parameters
node process... don't think there node process. attempted pass --js-flags="--harmony-default-parameters"
electron process, putting following in launch.json:
"runtimeargs": ["--js-flags=\"--harmony --harmony-default-parameters\""],
...but didn't work, either.
is possible?
Comments
Post a Comment