Babel --out-file 在子文件夹中
Babel --out-file in a child folder
我正在尝试用 babel 编译 jsx。我可以做到,但我想在子目录中设置 --out-file 。有我想做的:
website
src
file_will_be_compiled.js
file_was_compiled.js
package.json
脚本我在运行上shell:
babel --watch src/file_will_be_compiled.js --out-dir src --plugins @babel/plugin-transform-react-jsx
好的,我解决了。新的shell代码:
babel --watch src/file_will_be_compiled.js --out-file src/compiled_file.js --presets preset-react
我正在尝试用 babel 编译 jsx。我可以做到,但我想在子目录中设置 --out-file 。有我想做的:
website
src
file_will_be_compiled.js
file_was_compiled.js
package.json
脚本我在运行上shell:
babel --watch src/file_will_be_compiled.js --out-dir src --plugins @babel/plugin-transform-react-jsx
好的,我解决了。新的shell代码:
babel --watch src/file_will_be_compiled.js --out-file src/compiled_file.js --presets preset-react