Featured image of post 讓 YCM 接受 jsx

讓 YCM 接受 jsx

讓 YCM 接受 jsx

最近寫 ˋreact 的時候只要遇到 jsx 語法 YCM 就會跳出這個錯誤

1
Cannot use JSX unless the '--jsx' flag is provided. (FixIt)

研究之後發現這是要給 tsserver 一個 --jsx 的 flag 就可以解決 爬文半個小時後發現只要在專案下的 jsconfig.json

1
2
3
4
5
6
7
8
9
{
  "compilerOptions": {
    "target": "es6",
    "checkJs": true
+ },
+ "compilerOptions": {
+   "jsx": "react"
  }
}
好想養貓阿~~
使用 Hugo 建立
主題 StackJimmy 設計