1. ホーム
  2. javascript

[解決済み] babel-loader jsx SyntaxError: 予期しないトークン [重複] が発生しました。

2022-02-18 17:22:51

質問

React + Webpackの初心者です。

Hello WorldのWebアプリで変なエラーを見つけました。

webpackでbabel-loaderを使ってjsxからjsに変換しているのですが、babelはjsxの構文を理解できないようです。

以下は私の依存関係です。

"devDependencies": {
  "babel-core": "^6.0.14",
  "babel-loader": "^6.0.0",
  "webpack": "^1.12.2",
  "webpack-dev-server": "^1.12.1"
},
"dependencies": {
  "react": "^0.14.1"
}

以下は私の webpack.config.js

var path = require('path');
module.exports = {
  entry: ['webpack/hot/dev-server',path.resolve(__dirname, 'app/main.js')],
  output: {
    path: path.resolve(__dirname, 'build'),
    filename: 'bundle.js'
  },
  module: {
      loaders: [
          { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader"}
      ]
  }
};

以下は私の app/main.js

var React = require("react");
React.render(<h1>hello world</h1>,document.getElementById("app"));

そして、これがエラーメッセージです。

ERROR in ./app/main.js
Module build failed: SyntaxError: ~/**/app/main.js: Unexpected token (2:13)
  1 | var React = require("react");
> 2 | React.render(<h1>hello world</h1>,document.getElementById("app"));
    |              ^
at Parser.pp.raise (~/**/node_modules/babylon/lib/parser/location.js:24:13)

ありがとうございました。

解決方法は?

babel-preset-react" を追加します。

npm install babel-preset-react

を追加し、webpack.config.js の babel-loader に "presets" オプションを追加してください。

(または、.babelrc や package.js に追加してください。 http://babeljs.io/docs/usage/babelrc/ )

webpack.config.jsの例です。

{ 
    test: /\.jsx?$/,         // Match both .js and .jsx files
    exclude: /node_modules/, 
    loader: "babel", 
    query:
      {
        presets:['react']
      }
}

最近、Babel 6がリリースされ、大きな変更がありました。 https://babeljs.io/blog/2015/10/29/6.0.0

react 0.14を使用している場合、以下のようになります。 ReactDOM.render() (から)。 require('react-dom') の代わりに React.render() : https://facebook.github.io/react/blog/#changelog

UPDATE 2018

Rule.queryはすでに非推奨となり、Rule.optionsが採用されています。webpack 4 での使い方は以下の通りです。

npm install babel-loader babel-preset-react

そして、webpack の設定(module.exports オブジェクトの module.rules 配列のエントリとして)。

{
    test: /\.jsx?$/,
    exclude: /node_modules/,
    use: [
      {
        loader: 'babel-loader',
        options: {
          presets: ['react']
        }
      }
    ],
  }