VS Code如何将HTML合并为.JS文件?

时间:2019-03-10 12:53:49

标签: javascript html visual-studio-code

我尝试用VS Code创建一个React项目。当我尝试使用以下HTML标记保存index.js时,VS Code破坏了我的标记并在单词和方括号之间插入了空格。找不到我可以解决的方法...

// this is before I safe the project
ReactDOM.render( <div> Hello World! </div>, document.getElementById('root'))

// this is after I safe the project
ReactDOM.render( < div > Hello World! < /div>, document.getElementById('root'))

1 个答案:

答案 0 :(得分:1)

要么:

  1. 将所有.js文件扩展名更改为.jsx
  2. 在用户/工作区设置中添加文件关联:
"files.associations": {
    "*.js": "javascriptreact"
  }