嘗試使用node
和node --harmony
但我繼續得到'SyntaxError:Unexpected token import'錯誤。節點5.6不理解ES6?
我有兩個文件,A.ts
和B.ts
。這裏是他們看什麼喜歡 -
B.ts
export class B {
}
A.ts
import {B} from './B';
console.log(new B());
導致在 -
(function (exports, require, module, __filename, __dirname) { import {B} from './B';
^^^^^^
SyntaxError: Unexpected token import
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:387:25)
at Object.Module._extensions..js (module.js:422:10)
at Module.load (module.js:357:32)
at Function.Module._load (module.js:314:12)
at Function.Module.runMain (module.js:447:10)
at startup (node.js:140:18)
at node.js:1001:3
爲什麼?
你的問題是打字稿,沒有節點,我想。 – Pointy
以上是不是純粹的es6? –
這是ES6。這裏根本沒有TypeScript。 –