我一直在互联网上搜索,但没有结果。
我的代码:
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
}
}