我已经安装了Babel7.5,这应该是理想的目标预置环境包,但不确定为什么它正在寻找“Babel-Preset-ES2015”。
你们能告诉我我犯了什么错误吗?下面是我的代码
package.json
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0"
}
}
.babelrc
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
模块生成失败(来自./node_modules/babel-loader/lib/index.js):
错误:从“d:\shashank\projects\uploadutility”中找不到模块“babel-preset-es2015”
我试图转编译我的反应/es6代码,我来自浏览器。我正在努力创建一个webpack构建,因为新的Babel 6版本和大多数教程现在已经过时的事实。这在我的. babelrc中工作: 但当我把它改成这个: 它抛出了这个神秘的错误: 这是我的网页包。配置。js如果这有帮助的话: 我有什么明显的遗漏吗?我还交换了预设的顺序,这似乎没有什么不同。在我的节点模块中,我有babel core、babel loa
@babel/preset-env is a smart preset that allows you to use the latest JavaScript without needing to micromanage which syntax transforms (and optionally, browser polyfills) are needed by your target en
此 preset 包含如下插件: @babel/plugin-transform-typescript 你需要为 @babel/cli 和 @babel/node 命令行工具指定 --extensions ".ts" 参数,以使其能够处理 .ts 文件。 示例 输入 const x: number = 0; 输出 const x = 0; 安装 npm install --save-dev @
安装 npm install babel-preset-minify --save-dev 用法 Via .babelrc 配置文件(推荐) .babelrc { "presets": ["minify"] } 或通过参数设置 - { "presets": [["minify", { "mangle": { "exclude": ["MyCustomE
此 preset 始终包含以下插件: @babel/plugin-syntax-jsx @babel/plugin-transform-react-jsx @babel/plugin-transform-react-display-name And with the development option: @babel/plugin-transform-react-jsx-self @babel/
此 preset 包含如下插件: @babel/plugin-transform-flow-strip-types 示例 输入 function foo(one: any, two: number, three?): string {} 输出 function foo(one, two, three) {} 安装 npm install --save-dev @babel/preset-flo