腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(101)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
DRY when make target可以从不同的源文件扩展名构建
以下是可行的: $(out)/%.js: %.ts BABEL_ENV=node babel $(<) --out-file $(@) --
source-maps
$(out)/%.js: %.tsx BABEL_ENV=node babel $(<) --out-file $(@) --
source-maps
浏览 16
提问于2019-02-15
得票数 0
回答已采纳
1
回答
当我尝试使用babel-cli v6转换我的代码时,为什么我得到一个‘未知选项:.babelrc.presets`错误?
...在我的.babelrc里有这个 "presets": [ "es2015", ]在运行babel --
source-maps
/node_modules/.bin/babel --
source-maps
=true --out-dir=lib src ReferenceError: [BABEL] src/main.js: Unknown
浏览 3
提问于2016-07-01
得票数 0
1
回答
建筑的用途是什么:babel和build:sass?
"build:babel": "babel --ignore src/vendor --
source-maps
-d build src", "build:sass": "node-sass src/styles
浏览 0
提问于2018-04-21
得票数 0
1
回答
如何使用源映射调试本地NPM依赖项(使用“NPM link`”)?
package.json:"scripts": { "dev": "babel src --watch -d lib --
source-maps
浏览 0
修改于2019-09-04
得票数 1
回答已采纳
1
回答
VS代码调试器在异步代码上不使用babel
code: 1.35.1node: 10 在异步代码上使用断点时,由于babel转换原始源代码,VS代码调试器或任何其他调试器都不能工作,因为babel提供的--
source-maps
浏览 0
提问于2019-06-24
得票数 1
1
回答
如何在CRA构建期间将scss编译包含到css中
build:babel:umd\" \"yarn build:babel:cjs\"", "build:babel:esm": "cross-env BABEL_ENV=esm babel --
source-ma
浏览 3
提问于2020-07-07
得票数 0
回答已采纳
1
回答
Rollbar + React:多个缩小的JS和Sourcemaps
我一直在提到https://docs.rollbar.com/docs/
source-maps
/,在那里似乎只有一个minified_url和source_map可以应用,但我的build/static
浏览 22
提问于2019-06-12
得票数 0
回答已采纳
1
回答
“BABEL_ENV”不被识别为内部或外部命令
yarn:build:cjs yarn:build:esm'BABEL_ENV' is not
浏览 0
修改于2019-04-03
得票数 2
1
回答
如何使用npm脚本运行客户端javascript的代码覆盖率
/node_modules/babel-cli/bin/babel.js js --out-dir tmp/js --
source-maps
./node_modules/babel-cli/bin/babel.js test --out-dir tmp/test --
source-maps
.
浏览 1
提问于2017-10-24
得票数 1
1
回答
Ng build生成无效的源地图。
几周内,ng build --watch --
source-maps
和我不知道如何解决这个问题。我可以做ng build来生成有效的(浏览器可读的)源代码映射,但是它要慢得多. 有人有什么想法吗?
浏览 0
提问于2019-08-26
得票数 0
回答已采纳
2
回答
预置“es2016”的Babel是否实现了尾调用优化?
description": "", "scripts": { "watch": "babel es6 --out-dir es5 --
source-maps
--watch", "
浏览 3
修改于2016-04-06
得票数 8
回答已采纳
1
回答
Chrome源地图不能与Babel一起使用
我想我已经花了几个小时尝试了很多不同的东西,其他人似乎也有相同的issues...PLEASE帮助: babel source --out-dir dist --
source-maps
&& node
浏览 1
修改于2016-09-10
得票数 2
回答已采纳
2
回答
BabelJS:没有找到目录中的所有.js文件
sample/ models.es6 scripts/ playground.es6 如果我运行babel src --out-dir dist --
source-maps
浏览 0
提问于2018-02-23
得票数 0
回答已采纳
1
回答
让babel看两个文件夹
isShellCommand": true, { }, "args": ["dash7", "--out-d
浏览 1
提问于2017-05-05
得票数 3
回答已采纳
2
回答
如何在Gatsby v2中关闭生产环境中的源图?
exports.onCreateWebpackConfig = ({ actions, stage }) => { // turn off
source-maps
浏览 10
提问于2018-08-22
得票数 7
回答已采纳
1
回答
NGNIX反向代理默认设置
问题是,当我们将项目文件夹放在/var/www/html/ project _folder中并运行npm start in给定的错误节点启动babel-node src --
source-maps
错误:
浏览 49
提问于2021-01-23
得票数 0
4
回答
用电子生成器设置电子图标
"build-bcrypt": "npm rebuild bcrypt --update-binary", "private:build:linux": "build --linux", "private:watch": "npm run private:compile -- --
s
浏览 4
修改于2017-11-13
得票数 5
1
回答
如何链接css: package.json中的监视和巴别塔
/node_modules src/ -o src/ --watch --recursive", "build": "watch-css babel --
source-maps
inline -
浏览 0
提问于2018-06-01
得票数 0
2
回答
typescript tsconfig允许.json导入,构建文件(.js)不允许。怎么回事?
实际的构建命令看起来是: babel src --out-dir dist --extensions .js,.ts --
source-maps
这是一个服务器端的,非webpack的项目。
浏览 30
修改于2020-04-20
得票数 0
回答已采纳
1
回答
通过ES6中的Babel自定义PhpStorm编译文件的目录目标
D:\wamp\www\vuejs\node_modules\.bin\babel.cmd$FilePathRelativeToProjectRoot$ --out-dir dist --
source-maps
浏览 3
修改于2017-06-23
得票数 0
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
点击加载更多
领券