我有以下的打字稿節點無法運行編譯打字稿
var foo = (...myParams) => {
for (var i = 0; i < myParams.length; i++){
console.log(myParams[i] + " ");
}
};
foo('a', 'b', 'c');
然而,當它編譯通過WebStorm發現在編譯的代碼中的錯誤:
時,它的符文由節點,Node無法識別其餘表達式。
C:\PluralSight\TypeScript>node rest-parameter.js
C:\PluralSight\TypeScript\rest-parameter.js:5
var foo = (...myParams) => {
^^^
SyntaxError: Unexpected token ...
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:414:25)
at Object.Module._extensions..js (module.js:442:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:311:12)
at Function.Module.runMain (module.js:467:10)
at startup (node.js:136:18)
at node.js:963:3
http://kangax.github.io/compat-table/es6/ –
@squint很酷的鏈接。節點只是不支持它們。 C'est la vive。如果你改變打字稿爲[目標ES5] – BanksySan
@BanksySan(https://www.typescriptlang.org/docs/handbook/compiler-options.html)它會工作 –