我环顾四周寻找解决此问题的方法。他们都建议添加"jsx": "react"到您的 tsconfig.json 文件中。我已经做到了。另一个是添加"include: []",我也这样做了。但是,当我尝试编辑.tsx文件时,我仍然收到错误消息。下面是我的 tsconfig 文件。
"jsx": "react"
"include: []"
.tsx
{ "compilerOptions": { "module": "commonjs", "target": "es5", "allowJs": true, "checkJs": false, "jsx": "react", "outDir": "./build", "rootDir": "./lib", "removeComments": true, "noEmit": true, "pretty": true, "skipLibCheck": true, "strict": true, "moduleResolution": "node", "esModuleInterop": true }, "include": [ "./lib/**/*" ], "exclude": [ "node_modules" ] }
任何的意见都将会有帮助。我正在使用 babel 7 编译所有带有 env、react 和 typescript 预设的代码。如果你们需要更多文件来帮助调试,请告诉我。
除非提供了“–jsx”标志,否则不能使用 JSX
重新启动您的 IDE。有时 tsconfig.json 更改不会立即被拾取 馃尮