Webpack - Неверный объект конфигурации.Webpack был инициализирован с использованием объекта конфигурации, который не соответствует схеме API - PullRequest
0 голосов
/ 01 декабря 2018

Я продолжаю получать ошибку, которая в названии, я не могу понять, почему.«Недопустимый объект конфигурации. Webpack был инициализирован с использованием объекта конфигурации, который не соответствует схеме API».Ниже мой конфиг веб-пакета, а также мой package.json.заранее спасибо!

var path = require('path');

module.exports = {
  devtool: 'sourcemaps',
  cache: true,

  mode: 'development',
  output: {
    path: __dirname,
    filename: './src/main/resources/static/built/bundle.js'
  },

  module: {
    rules: [{
        test: path.join(__dirname, '.'),
        template: 'html!' + __dirname + '/public/app/index.html',
        exclude: /(node_modules)/,
        use: [{
          loader: 'babel-loader',
          options: {
            presets: ["@babel/preset-env", "@babel/preset-react"],
            plugins: ["@babel/plugin-proposal-class-properties", {
              "loose": true
            }]

          }
        }]
      }

    ]
  }
};

package.json

{
  "name": "eeareact",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.5.2",
    "react-dom": "^16.5.2",
    "rest": "^1.3.1"
  },
  "keywords": [
    "rest",
    "hateoas",
    "spring",
    "data",
    "react"
  ],
  "author": "Greg L. Turnquist",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/spring-guides/tut-react-and-spring-data-rest/issues"
  },
  "homepage": "https://github.com/spring-guides/tut-react-and-spring-data-rest",
  "scripts": {
    "start": "webpack --watch -d",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "build-assets": "webpack -p --progress",
    "eject": "react-scripts eject"
  },
  "devDependencies": {
    "@babel/core": "^7.1.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.2",
    "webpack": "^4.19.1",
    "webpack-cli": "^3.1.0"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}
...