您好我正在尝试在工作中导入我的类并收到以下错误
(function (exports, require, module, __filename, __dirname) { import { Myclass } from '../utility/myclass';
^^^^^^
SyntaxError: Unexpected token import
at createScript (vm.js:53:10)
at Object.runInThisContext (vm.js:95:10)
at Module._compile (module.js:543:28)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:427:7)
我在以下
中也遇到错误async function getOrder() : Promise<any> {
^
SyntaxError: Unexpected token :
我正在使用typescript并为kue包含了类型文件。我从命令行运行worker,看起来它能够理解env ...不确定是什么错误..
答案 0 :(得分:0)