jspm does not transpile code from ES6 to ES5

2019-05-08 07:08发布

Running jspm bundle-sfx some/input some/output.js does not transpile my code from ES6 to ES5. This makes the output file unusable.

Example contents of input file:

[1,2,3,4].map((i)=>i*i);

1条回答
何必那么认真
2楼-- · 2019-05-08 07:43

As explained by jspm author here:

ES6 transpilation only happens for ES6 modules, not ES6 files written in CommonJS.

It means that transpilation happens only for files using module syntax (import, export). It can be forced though by adding "format es6"; at the top of the source file as so:

"format es6";
[1,2,3,4].map((i)=>i*i);
查看更多
登录 后发表回答