0

这是我的代码

import * as yargs from 'yargs';

const newYargs = yargs.argv;

console.log(newYargs.value);

在终端中运行命令node ./src/index.ts我得到这个错误

import * as yargs from 'yargs': SyntaxError: Cannot use import statement outside a module

问题是什么?如何解决?

4

1 回答 1

0

node不懂 TypeScript。它只理解 JavaScript。

如果要直接运行 TypeScript,请使用ts-node.

于 2019-10-30T07:19:45.500 回答