我对 TypeScript 相当陌生,并且遇到了一个错误:意外的令牌"导出"



我一直在互联网上搜索,但没有结果。

我的代码:

export const MESSAGES = {
TEST: {
ONE: 'Hello, world!'
}
}

tsconfig:

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"strict": true
}
}

编辑:我需要一个JavaScript文件。

export关键字是es6模块语法,因此将commonjs更改为esnext

{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"strict": true
}
}

相关内容

  • 没有找到相关文章

最新更新