0

我正在尝试用 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
4

1 回答 1

0

好的,我解决了。新的外壳代码:

babel --watch src/file_will_be_compiled.js --out-file src/compiled_file.js --presets preset-react

于 2020-05-27T09:07:40.423 回答