gpt4 book ai didi

javascript - 语法错误 - 当前未启用对实验性语法 'decorators-legacy' 的支持

转载 作者:行者123 更新时间:2023-12-02 22:05:30 25 4
gpt4 key购买 nike

我正在尝试使用装饰器构建 JS React 项目。我的 .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 和 React 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错误吗?正如文档中所说,这应该可以解决我的问题,但它仍然出现。

最佳答案

我遇到了同样的问题,但我可以通过运行 npm install --save-dev @babel/plugin-proposal-decorators 并添加 ["@babel 使其正常工作/plugin-proposal-decorators", { "legacy": true }] 到我的 .babelrc 中的插件部分。

.babelrc 的插件部分,对我来说,现在看起来像这样:

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

关于javascript - 语法错误 - 当前未启用对实验性语法 'decorators-legacy' 的支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52262084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com