这是我的代码
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
问题是什么?如何解决?
这是我的代码
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
问题是什么?如何解决?