Webpack 3 schema-utils错误,没有任何信息

Nik*_*kos 5 webpack webpack-3

运行webpack时,我得到以下内容:

/Users/nikos/WebstormProjects/quantumjs/node_modules/schema-utils/dist/validateOptions.js:40
    throw new _ValidationError2.default(ajv.errors, name);
    ^

false
Run Code Online (Sandbox Code Playgroud)

这是我的配置:

var path = require("path");
var webpack = require("webpack");
var WebpackBuildNotifierPlugin = require("webpack-build-notifier");
const ExtractTextPlugin = require("extract-text-webpack-plugin");

const PATHS = {
  src: path.join(__dirname, './src'),
  build: path.join(__dirname, './build')
};

module.exports = {

  entry: {
    "app": PATHS.src + '/index.ts'
  },
  output: {
    path: PATHS.build,
    filename: '[name].js',
    publicPath: '/'

  },
  devtool: "source-map",
  module: {
    loaders: [
      {
        test: /\.ts$/,
        loader: 'ts-loader'
      },
      {
        test: /\.p?css$/,
        use: ExtractTextPlugin.extract({
          fallbackLoader: "style-loader",
          loader: "css-loader?importLoaders=1,url=false!postcss-loader"
        })
      }
    ]
  },
  resolve: {
    // you can now require('file') instead of require('file.js')
    extensions: ['.ts', '.js','.pcss']
  },
  plugins: [
    new WebpackBuildNotifierPlugin({
      title: "My Project Webpack Build"
    }),
    new ExtractTextPlugin("app.css"),
  ]
};
Run Code Online (Sandbox Code Playgroud)

Mar*_*ski 10

extract-text-webpack-plugin 已弃用以下选项:

  • fallbackLoader 就是现在 fallback
  • loader必须被替换use.

资料来源:https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/569