실험적 구문 'classProperties'에 대한 지원이 현재 활성화되어 있지 않습니다.


117

Django 프로젝트에서 React를 설정하는 동안이 오류가 발생했습니다.

모듈 빌드의 ModuleBuildError 실패 (./node_modules/babel-loader/lib/index.js에서) : SyntaxError : C : \ Users \ 1Sun \ Cebula3 \ cebula_react \ assets \ js \ index.js : 실험적 구문 'classProperties 지원 '는 현재 활성화되어 있지 않습니다 (17 : 9) :

  15 | 
  16 | class BodyPartWrapper extends Component {
> 17 |   state = {
     |         ^
  18 | 
  19 |   }
  20 | 

Add @babel/plugin-proposal-class-properties (https://git.io/vb4SL) to the 
'plugins' section of your Babel config to enable transformation.

그래서 @ babel / plugin-proposal-class-properties를 설치하고 이것을 babelrc에 넣었습니다.

package.json

{
  "name": "cebula_react",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server --config ./webpack.config.js --mode development",
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "webpack --config prod.config.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "babel": {
    "presets": [
      "@babel/preset-env",
      "@babel/preset-react"
    ]
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.2",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "react-hot-loader": "^4.3.6",
    "webpack": "^4.17.2",
    "webpack-bundle-tracker": "^0.3.0",
    "webpack-cli": "^3.1.0",
    "webpack-dev-server": "^3.1.8"
  },
  "dependencies": {
    "react": "^16.5.0",
    "react-dom": "^16.5.0"
  }
}

바벨 르크

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "plugins": [
    "@babel/plugin-proposal-class-properties"
  ]
}

그러나 오류는 여전히 존재합니다. 무엇이 문제입니까 ??


당신은하지 말았어야 / 필요 모두 @babel/plugin-proposal-class-propertiesbabel-plugin-transform-class-properties. 설치 후 재 구축하는 거죠?
SamVK

어떤 버전의 바벨을 실행하고 있습니까?
SamVK

당신은 JSON 패키지 공유로
Sakhi 만수르에게

내 패키지 json을 편집했습니다
1Sun

실행 시도npx babel-upgrade --write --install
FDisk

답변:


82

변화

"plugins": [
    "@babel/plugin-proposal-class-properties"
  ]

"plugins": [
    [
      "@babel/plugin-proposal-class-properties",
      {
        "loose": true
      }
    ]
  ]

이것은 나를 위해 일했습니다.


17
NPM 내가 --save-DEV @ 바벨 / 플러그인 - 제안 - 클래스 - 속성
Abhay 시로

1
이것은 나를 위해 일하지 않습니다. 나는 앱 반응 배출하고 있지 않다
Supriya Kalghatgi

4
우분투 18 - 나는 이름을 변경했다 .babelrc으로 babel.config.js사용 module.export같은 stackoverflow.com/questions/53916434/... GitHub의에서 논의 된 바와 같이 github.com/babel/babel/issues/7879#issuecomment-419732313
파브리 지오 Bertoglio을

2
Test suite failed to run; .loose is not a valid Plugin property
데이비드 Callanan

43

웹팩 프로젝트 솔루션

@babel/plugin-proposal-class-propertieswebpack config 플러그인 에 추가하여이 문제를 해결했습니다 . 내 모듈 섹션은 webpack.config.js다음과 같습니다.

module: {
    rules: [
        {
            test: path.join(__dirname, '.'),
            exclude: /(node_modules)/,
            loader: 'babel-loader',
            options: {
                presets: ['@babel/preset-env',
                          '@babel/react',{
                          'plugins': ['@babel/plugin-proposal-class-properties']}]
            }
        }
    ]
}

3
많은 구성 파일 (webpack.config.js, package.json 및 .babelrc와 같은)이있는 것이 좋지 않기 때문에 webpack을 사용할 때 올바른 대답이어야합니다 -github.com/babel/babel/issues/8655# issuecomment-419795548
Miro J.

나를 위해 완벽하게 일했습니다-며칠 동안 이것에 대해 미스터리했습니다 ... 많은 감사합니다.
samuelsaumanchan

42

먼저 @ babel / plugin-proposal-class-properties 를 dev 종속성으로 설치하십시오.

npm install @babel/plugin-proposal-class-properties --save-dev

그런 다음 .babelrc를 다음과 같이 수정하십시오.

{
  "presets": [
      "@babel/preset-env",
      "@babel/preset-react"
  ],
  "plugins": [
      [
        "@babel/plugin-proposal-class-properties"
      ]
  ]
}

package.json 이 있는 루트 디렉토리에있는 .babelrc 파일 .

변경 사항을 적용하려면 웹팩 개발 서버를 다시 시작해야합니다.


2
이것은 나를 위해 작동합니다, 감사합니다. 바벨 7.0+의 솔루션이라고 생각합니다
Black Hole

1
이것은 나를 위해 일했습니다.
Bhimashankar Sutar

36
{
    "presets": [
        "@babel/preset-env",
        "@babel/preset-react"
    ],
    "plugins": [
        [
          "@babel/plugin-proposal-class-properties"
        ]
    ]
}

.babelrc 파일을 위의 코드로 바꿉니다. 그것은 나를 위해 문제를 해결했습니다.


create-react-app을 꺼낸 경우 webpack.config.demo 및 package.json의 구성을이 구성으로 변경하십시오. 이 방법은 실행npm install --save-dev @babel/preset-env @babel/preset-react @babel/plugin-proposal-class-properties
시스코 호지

이것은 간단했습니다. 그래서 나는 @babel/plugin-proposal-class-properties의존성 을 놓치고 있었다 .
khwilo

11

내 작업 환경 루트에는 .babelrc 파일이 없습니다. 그러나 package.json의 다음 항목으로 문제가 해결되었습니다.

"babel": {
"presets": [
  "@babel/preset-env",
  "@babel/preset-react"
],
"plugins": [
  "@babel/plugin-proposal-class-properties"
]}

참고 : npm 또는 yarn 명령을 실행하기 전에 콘솔을 종료하고 다시 여는 것을 잊지 마십시오.


6

거의 3 시간 동안 동일한 오류를 검색하고 시간을 보낸 후 React에 이름 가져 오기를 사용하고 있음을 발견했습니다.

import { React } from 'react';

그것은 완전히 잘못된 것입니다. 다음으로 전환하면됩니다.

import React from 'react';

모든 오류가 사라졌습니다. 누군가에게 도움이되기를 바랍니다. 이것은 내 .babelrc입니다.

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "plugins": [
      "@babel/plugin-proposal-class-properties"
  ]
}

webpack.config.js

const path = require('path');
const devMode = process.env.Node_ENV !== 'production';
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
  entry: './src/App.js',
  devtool: 'source-map',
  output: {
    path: path.resolve(__dirname, 'public'),
    filename: 'App.js'
  },
  mode: 'development',
  devServer: {
    contentBase: path.resolve(__dirname, 'public'),
    port:9090,
    open: 'google chrome',
    historyApiFallback: true
  },
  module: {
    rules: [
      {
        test: /\.m?js$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader'
        }
      },{
        test: /\.(sa|sc|c)ss$/,
        use: [
          devMode ? 'style-loader' : MiniCssExtractPlugin.loader,
          {
            loader: 'css-loader',
            options: {
              modules: true,
              localIdentName: '[local]--[hash:base64:5]',
              sourceMap: true
            }
          },{
            loader: 'sass-loader'
          }
        ]
      }
    ]
  },
  plugins: [
    new MiniCssExtractPlugin({
      filename: devMode ? '[name].css' : '[name].[hash].css',
      chunkFilename: devMode ? '[id].css' : '[id].[hash].css'
    })
  ]
}

package.json

{
  "name": "expense-app",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "build": "webpack",
    "serve": "webpack-dev-server"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.1.2",
    "@babel/plugin-proposal-class-properties": "^7.1.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.4",
    "css-loader": "^1.0.0",
    "mini-css-extract-plugin": "^0.4.3",
    "node-sass": "^4.9.3",
    "react-router-dom": "^4.3.1",
    "sass-loader": "^7.1.0",
    "style-loader": "^0.23.1",
    "webpack": "^4.20.2",
    "webpack-cli": "^3.1.2",
    "webpack-dev-server": "^3.1.9"
  },
  "dependencies": {
    "normalize.css": "^8.0.0",
    "react": "^16.5.2",
    "react-dom": "^16.5.2"
  }
}

이 대답은 나와 관련이 없어 보입니다. 잘못된 가져 오기는 사용중인 플러그인에 관계없이 잘못된 가져 오기입니다.
Marco Faustinelli 2018

@MarcoFaustinelli 귀하의 의견에 감사드립니다. 잘못된 가져 오기가이 오류의 원인 중 하나입니다. 매우 간단하고 근본적인 문제이지만 모든 사람에게 발생할 수 있습니다. 대답은 문제에 대한 안내입니다.
Mo Hemati 2018

그것이 나를 위해 일했기 때문에가 아니라 문제가 무엇인지 이해하는 데 도움이 되었기 때문에이 오류 메시지는별로 구체적이지 않습니다.
Pro Q

6
  • plugin-proposal-class-properties 설치 npm install @babel/plugin-proposal-class-properties --save-dev

  • 다음을 추가하여 webpack.config.js를 업데이트하십시오. 'plugins': ['@babel/plugin-proposal-class-properties']}]


'플러그인'을 추가하는 방법에 대한 자세한 내용은 이 페이지를
Pro Q

이렇게하면 다음과 같은 오류가 발생합니다Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. - configuration.plugins[1] should be one of these: object { apply, … } | function -> Plugin of type object or instanceof Function Details: * configuration.plugins[1] should be an object. -> Plugin instance * configuration.plugins[1] should be an instance of function -> Function acting as plugin
Pro Q

5

.babelrc무시 된 문제를 찾았 지만 babel.config.js다음을 만들고 추가합니다.

module.exports = {
  plugins: [
    ['@babel/plugin-proposal-decorators', { legacy: true }],
    ['@babel/plugin-proposal-class-properties', { loose: true }],
    '@babel/plugin-syntax-dynamic-import',
    '@babel/plugin-transform-regenerator',
    [
      '@babel/plugin-transform-runtime',
      {
        helpers: false,
        regenerator: true,
      },
    ],
  ],
  presets: [
    "@babel/preset-flow",
    'module:metro-react-native-babel-preset',
  ],
};

그리고 그것은 React Native 애플리케이션에서 저에게 효과적이며 React 앱에도 도움이 될 것이라고 생각합니다.


1
module.exports = { "presets": ["module:metro-react-native-babel-preset"], "plugins": ["@babel/plugin-proposal-class-properties"] }나에게 충분했다. 당신은 당신의 대답을 업데이트 할 수 있으며 우리는 이유를 이해한다 .babelrc무시
파브리 지오 Bertoglio

@FabrizioBertoglio Babel 7은 더 이상 .babelrc를 자동으로로드하지 않습니다. 7의 Babel에 새로 도입 된 것은 "루트"디렉토리 개념입니다. 프로젝트 전체 구성의 경우 Babel은 "babel.config.js"를 자동으로 검색합니다
Hussam Kurd


5

방금 Laravel Framework 5.7.19에서 테스트했으며 다음 단계가 작동합니다.

.babelrc 파일이 애플리케이션의 루트 폴더에 있는지 확인하고 다음 코드를 추가합니다.

{
  "plugins": ["@babel/plugin-proposal-class-properties"]
}

을 실행 npm install --save-dev @babel/plugin-proposal-class-properties합니다.

을 실행 npm run watch합니다.


4

나는 바벨 파서를 명시 적으로 사용하고 있습니다. 위의 솔루션 중 어느 것도 나를 위해 일하지 않았습니다. 이것은 효과가 있었다.

const ast = parser.parse(inputCode, {
      sourceType: 'module',
      plugins: [
        'jsx',
        'classProperties', // '@babel/plugin-proposal-class-properties',
      ],
    });

이 코드를 어디에 추가해야합니까? 그리고 당신은 반응 js를 사용합니까?
MoHammaD ReZa DehGhani

1
이 코드는 바벨 플러그인을 개발하는 경우입니다. 네, 내 플러그인은 JSX 용입니다. github.com/Ghost---Shadow/i18nize-react
Souradeep 난다

4

GitHub 문제 에 따르면 create-react-app을 사용하는 경우 .babelrc또는 babel.config.js구성을 복사하여 webpack.config.js삭제해야합니다. babelrc에서 구성한 두 줄의 코드 babelrc: false,configFile: false,는 쓸모가 없기 때문입니다. 그리고 당신 webpack.config.js은 당신의 ./node_madules/react-scripts/config폴더 에 있습니다 .

{
              test: /\.(js|mjs)$/,
              exclude: /@babel(?:\/|\\{1,2})runtime/,
              loader: require.resolve('babel-loader'),
              options: {
                babelrc: false,
                configFile: false,
                compact: false,
                presets: [
                  [
                    require.resolve('babel-preset-react-app/dependencies'),
                    { helpers: true },

                  ],
                  '@babel/preset-env', '@babel/preset-react'
                ],
                plugins: ['@babel/plugin-proposal-class-properties'],
                .
                .
                .

4

나를 state위해 constructor function일한 내부 이동 :

...
class MyComponent extends Component {
  constructor(man) {
    super(man)
    this.state = {}
  }
}
...

행운을 빕니다...


3

실을 사용하고 있습니다. 오류를 극복하기 위해 다음을 수행해야했습니다.

yarn add @babel/plugin-proposal-class-properties --dev

3

첨가

"plugins": [
    [
      "@babel/plugin-proposal-class-properties"
    ]
  ]

.babelrc나를 위해 작동합니다.


2

yarn add --dev @babel/plugin-proposal-class-properties

또는

npm install @babel/plugin-proposal-class-properties --save-dev .babelrc


1

어떤 하나 monorepo의 다음과 같은 작업을하면 반응 - 네이티브 웹 monorepo 당신이 필요 이상 config-overrides.js으로 파일을 packages/web. 당신은 추가해야resolveApp('../../node_modules/react-native-ratings'),해당 파일 합니다 ...

내 완전한 config-override.js파일은

const fs = require('fs');
const path = require('path');
const webpack = require('webpack');

const appDirectory = fs.realpathSync(process.cwd());
const resolveApp = relativePath => path.resolve(appDirectory, relativePath);

// our packages that will now be included in the CRA build step
const appIncludes = [
    resolveApp('src'),
    resolveApp('../components/src'),
    resolveApp('../../node_modules/@react-navigation'),
    resolveApp('../../node_modules/react-navigation'),
    resolveApp('../../node_modules/react-native-gesture-handler'),
    resolveApp('../../node_modules/react-native-reanimated'),
    resolveApp('../../node_modules/react-native-screens'),
    resolveApp('../../node_modules/react-native-ratings'),
    resolveApp('../../node_modules/react-navigation-drawer'),
    resolveApp('../../node_modules/react-navigation-stack'),
    resolveApp('../../node_modules/react-navigation-tabs'),
    resolveApp('../../node_modules/react-native-elements'),
    resolveApp('../../node_modules/react-native-vector-icons'),
];

module.exports = function override(config, env) {
    // allow importing from outside of src folder
    config.resolve.plugins = config.resolve.plugins.filter(
        plugin => plugin.constructor.name !== 'ModuleScopePlugin'
    );
    config.module.rules[0].include = appIncludes;
    config.module.rules[1] = null;
    config.module.rules[2].oneOf[1].include = appIncludes;
    config.module.rules[2].oneOf[1].options.plugins = [
        require.resolve('babel-plugin-react-native-web'),
        require.resolve('@babel/plugin-proposal-class-properties'),
    ].concat(config.module.rules[2].oneOf[1].options.plugins);
    config.module.rules = config.module.rules.filter(Boolean);
    config.plugins.push(
        new webpack.DefinePlugin({ __DEV__: env !== 'production' })
    );

    return config
};

0

나는 src / components-> ../../components에 대한 심볼릭 링크를 만들었는데, 그로 인해 정신이 나갔고 npm startsrc / components / *. js를 jsx로 해석하는 것을 중단하여 동일한 오류가 발생했습니다. 공식 바벨 에서 수정하는 모든 지침 은 쓸모가 없었습니다. 구성 요소 디렉토리를 다시 복사했을 때 모든 것이 정상으로 돌아 왔습니다!


0

바벨로 일부 jsx를 변환하는 동안 동일한 문제에 직면했습니다. 아래는 나를 위해 일한 솔루션입니다. .babelrc에 다음 json을 추가 할 수 있습니다.

{
  "presets": [
    [
      "@babel/preset-react",
      { "targets": { "browsers": ["last 3 versions", "safari >= 6"] } }
    ]
  ],
  "plugins": [["@babel/plugin-proposal-class-properties"]]
}
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.