WebStorm调试器不导入多个值(ES2015)

时间:2016-06-17 15:36:58

标签: javascript node.js debugging ide

在我的项目中,我有一个像这样的config.js文件

 export const SETTING_A = 1;
 export const SETTING_B = 2;

我的代码中的某处

 import {SETTING_A, SETTING_B} from './config';

当我从命令行运行我的代码(或在WebStrom中点击播放按钮)时,它完美无缺

$> ./node_modules/.bin/babel-node ./index.js

但是,当我在WebStorm中启动调试器时,导入的值为undefined

这是我的WebStorm设置:

Node Interpreter: ~/WebstormProjects/test/node_modules/.bin/babel_node
Working directory: /Users/me/WebstormProjects/test
Javascript file: ./index.js

当我在调试模式下运行它时,在控制台中我看到以下命令

$> /Users/me/WebstormProjects/test/node_modules/.bin/babel-node --debug-brk=51396 ./index.js

为什么调试器无法导入的任何建议?

0 个答案:

没有答案