web-dev-qa-db-ja.com

構文エラー-実験的構文「decorators-legacy」のサポートは現在有効になっていません

デコレータを使用してJS反応プロジェクトを構築しようとしています。私の.babelrcは次のようになります。

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react",

  ],
  "plugins": [
    "@babel/plugin-transform-runtime",
    "@babel/plugin-transform-object-assign",
    [
      "@babel/plugin-proposal-decorators",
      {
        "legacy": true
      }
    ],
    ["@babel/plugin-proposal-class-properties", { "loose": true }]
  ]
}

@ babel/plugin-proposal-decorators問題の追加が再び表示されます。

私はbabel 7、webpack 4を使用しており、16.5に反応しています

webpack.config.js:

const path = require("path");
const webpack = require("webpack");
const componentName = "reports-desktop";
const publicFolderRelativePath = "../../../../../../public/js";
const ignorePlugin = new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/);

module.exports = {
    entry: './reports-desktop.js'
    ,
    output: {
        path: path.resolve(__dirname, publicFolderRelativePath),
        filename: `${componentName}.js`
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader"
                }
            }
        ]
    },
    plugins: [
        ignorePlugin
    ]
};

package.json:

{
  "name": "captain",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "watch": "webpack -w --mode development --progress --color --display-error-details",
    "build": "webpack --mode production"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/plugin-proposal-decorators": "^7.0.0",
    "@babel/plugin-transform-object-assign": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-stage-1": "^7.0.0",
    "@babel/preset-stage-2": "^7.0.0",
    "babel-loader": "^8.0.2",
    "babel-plugin-transform-decorators": "^6.24.1",
    "react": "^16.5.0",
    "react-dom": "^16.5.0",
    "react-redux": "^5.0.7",
    "react-router-dom": "^4.3.1",
    "redux": "^4.0.0",
    "webpack": "^4.17.3",
    "webpack-cli": "^3.1.0"
  },
  "dependencies": {
    "axios": "^0.18.0",
    "dropzone": "^5.5.1",
    "lodash": "^4.17.10",
    "moment": "^2.22.2",
    "prop-types": "^15.6.2",
    "react-addons-update": "^15.6.2",
    "react-bootstrap": "^0.32.4",
    "react-datetime": "^2.15.0",
    "react-dnd": "^5.0.0",
    "react-dnd-html5-backend": "^5.0.1",
    "react-media": "^1.8.0",
    "react-tooltip": "^3.8.1"
  }
}

私はおそらく@ babel/plugin-proposal-decoratorsを間違って使用していますか?ドキュメントで述べているように、これで問題が解決するはずですが、それでも表示されます。

27
olga_babic

同じ問題がありましたが、npm install --save-dev @babel/plugin-proposal-decoratorsを実行し、["@babel/plugin-proposal-decorators", { "legacy": true }]のプラグインセクションに.babelrcを追加することで、問題を解決できました。

私にとって、.babelrcのプラグインセクションは次のようになります。

"plugins": [
  ["@babel/plugin-proposal-decorators", { "legacy": true }]
]
31

mobxjs から取得。それでも問題が解決しない場合は、 this を参照してください。助けてくれました。

デコレータレガシーモードでのbabel 7の設定例:

//.babelrc

{
    "presets": ["@babel/preset-env"],
    "plugins": [
        ["@babel/plugin-proposal-decorators", { "legacy": true }],
        ["@babel/plugin-proposal-class-properties", { "loose": true }]
    ]
}

プラグインの順序は重要であり、plugin-proposal-decoratorsはプラグインリストの最初のプラグインであることに注意してください

"devDependencies": {
    "@babel/core": "^7.1.0",
    "@babel/plugin-proposal-class-properties": "^7.1.0",
    "@babel/plugin-proposal-decorators": "^7.1.0",
    "@babel/preset-env": "^7.1.0"
}

非レガシーモードデコレータ(ステージ2)は進行中です。#1732を参照してください

編集:babel 7の非ベータ構成を表示するように構成を更新しました

6
Alex Cory

MobXでReactJSを使用しているときにこのエラーに直面した場合、

Don't enable decorator syntax, but leverage the MobX built-in utility decorate to apply decorators to your classes / objects.

しないでください:

import { observable, computed, action } from "mobx";

class Timer {
  @observable start = Date.now();
  @observable current = Date.now();

  @computed
  get elapsedTime() {
    return this.current - this.start + "milliseconds";
  }

  @action
  tick() {
    this.current = Date.now();
  }
}

行う:

import { observable, computed, action, decorate } from "mobx";

class Timer {
  start = Date.now();
  current = Date.now();

  get elapsedTime() {
    return this.current - this.start + "milliseconds";
  }

  tick() {
    this.current = Date.now();
  }
}
decorate(Timer, {
  start: observable,
  current: observable,
  elapsedTime: computed,
  tick: action
});
4
Abhay Kumar

まず、コマンドを実行します:

npm install customize-cra react-app-rewired @babel/plugin-proposal-decorators --save

プロジェクトルートに新しいファイルconfig-overrides.jsを作成し、次を実行します。

const { override, addDecoratorsLegacy } = require('customize-cra');
module.exports = override(
 addDecoratorsLegacy()
 );

また、package.jsonfileを編集します:

"scripts": {
 "start": "react-app-rewired start",
 "build": "react-app-rewired build",
 "test": "react-app-rewired test",
 "eject": "react-app-rewired eject"
  },

その後、再起動します。

4
ulyC

package.json

"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5"

webpack.config.js

presets: ["@babel/preset-env", "@babel/preset-react"]

.babelrc

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "plugins":  [
    ["@babel/plugin-proposal-decorators", { "legacy": true }],
    ["@babel/plugin-proposal-class-properties", { "loose": true }]
  ]
}
1
zloctb

babel-plugin-transform-inline-environment-variablesをインストールしようとしましたが、うまくいきました。

npm install babel-plugin-transform-inline-environment-variables
0
Ati Barzideh

これをyarn add @babel/plugin-proposal-decoratorsで修正しました

次に、pluginsセクションのbabel.config.jsに以下を追加しました。

  [
    require('@babel/plugin-proposal-decorators').default,
    {
      legacy: true
    }
  ],

最後に、webpack devサーバーを再起動する必要がありました。


私はこれをテストしていませんが、@ christopher bradshawが答えているように、設定に.babelrcを使用している場合はbabelウェブサイトによると、"plugins"セクションに以下を追加します。

  ["@babel/plugin-proposal-decorators", { "legacy": true }]
0
wuliwong