-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Uncaught Error: Cannot find module "react-json-tree" #259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
It is a dependency on redux-devtools-log-monitor and should get installed with it. Try removing |
Thanks for respond.
their For the moment, I use the Chrome Extension instead. |
Yea I have the same problem. The error occures in modules which are written in babel 5. But it shouldn't matter since it has been precompiled.
I think this is related to reduxjs/redux-thunk#44 and reduxjs/redux#1033 (comment) where when using For now you can definitely just remove find node_modules -type f -name .babelrc Long term we should update the packages using the discussed methods in the issues above (PR's for
|
Babel shouldn't process {
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
} |
Cool, that solves it for me, thank you! |
@zalmoxisus "configure it as follows" in which file? |
You can configure it in your var resolve = require('path').resolve
var webpack = require('webpack')
var config = {
...,
module: {
loaders: [
{
test: /\.js?$/,
loader: 'babel',
exclude: /node_modules/
}
]
},
...
}
module.exports = config |
When I run webpack-dev-server, this error showing. All the devDependencies packages installed successfully, I just don't know where goes wrong.
The text was updated successfully, but these errors were encountered: