我通过knex
和webpack
收到此问题。
Error: Cannot find module "../package.json"
Knex.VERSION = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module \"../package.json\""); e.code = 'MODULE_NOT_FOUND'; throw e; }())).version;
这是我的webpack.config.js
:
module.exports = {
entry: './index.js',
target: 'node',
output: {
path: './',
filename: 'main.js',
libraryTarget: 'commonjs2'
},
module: {
loaders: [
{
test: /\.json$/,
loader: 'json-loader'
}
]
}
}
我不明白为什么json
加载器不起作用。