আমি জ্যাঙ্গো প্রকল্পের মধ্যে প্রতিক্রিয়া স্থাপন করার সময় আমি এই ত্রুটিটি পেলাম
মডিউল বিল্ডে মডিউল বিল্ডআরআর ব্যর্থ হয়েছে (। 'বর্তমানে সক্ষম নয় (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.
সুতরাং, আমি @ বাবেল / প্লাগইন-প্রস্তাব-শ্রেণি-বৈশিষ্ট্যগুলি ইনস্টল করেছি এবং এটি বাবেলরসিআর-এ রেখেছি
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"
}
}
babelrc
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
তবে ত্রুটিটি এখনও রয়েছে, সমস্যা কি ??
npx babel-upgrade --write --install
@babel/plugin-proposal-class-properties
এবংbabel-plugin-transform-class-properties
। আপনি ইনস্টলের পরে পুনর্নির্মাণ করছেন, হ্যাঁ?