Knex + Webpack:找不到模块“../package.json”

时间:2016-06-21 20:19:14

标签: javascript node.js webpack knex.js

我通过knexwebpack收到此问题。

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加载器不起作用。

0 个答案:

没有答案