babel在导入东西时导出undefined

时间:2017-11-26 18:10:11

标签: javascript node.js babel

导入内容时,所有导出都在生成时导出未定义。

像这样:

import something from '';

export const word1 = 'Hello';
export const word2 = 'World';

会产生这个:

exports.word2 = exports.word1 = undefined;

I can reproduce it on babeljs.io

任何可以告诉我如何解决这个问题的人?

也许有一些插件?或者我应该更改代码?

0 个答案:

没有答案