babel-node不再在不同的目录中工作

时间:2015-11-18 17:56:41

标签: node.js babeljs

import credentials from '../config/credentials'
^^^^^^
SyntaxError: Unexpected reserved word

昨天babel-node工作正常。今天,在我的测试目录中,它不再有效。奇怪的是,它运行我的应用程序,使用ES6没问题。

版本:5.6.14

不知道导致这种情况发生的原因。

1 个答案:

答案 0 :(得分:1)

我有以下.babelrc文件

{
  "stage": 0,
  "ignore": [
    "node_modules",
    "bower_components",
    "testing",
    "test"
  ]
}

哪个禁止babel-node在测试目录中工作。