2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

以下のエラーの解決策

'React' は UMD グローバルを参照していますが、現在のファイルはモジュールです。代わりにインポートを追加することを考慮してください。

下の問題のファイルでエラーが発生する原因になっている箇所

tsconfig.json
"compilerOptions": {
"jsx": "react",
  }

解決方法

tsconfig.json
"compilerOptions": {
"jsx": "react-jsx",
  }

参考にしたサイト

「React」はUMDグローバルを指しますが、現在のファイルはモジュールですの解決
https://qiita.com/osa-osa/items/00385d3677b89b8effc1

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?