Edit 3: Starting in version 0.4.0, ES6 syntax can be turned on by adding a jsconfig.json file to the project folder with the following contents:
jsconfig.json
It's quite easy, at the root of your project create a jsconfig.json file and write this object in it:
{ "compilerOptions": { "target": "ES6", "module": "commonjs" } }