我有一个按以下方式构建的monorepo项目
/web
/native
/tsconfig.json
tsconfig.json
我的/native/tsconfig.json
看起来像这样
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "react-native"
}
}
但是由于某些原因,我的.tsx
文件中包含jsx会返回以下错误
[ts]除非提供'--jsx'标志,否则不能使用JSX。 [17004]
使用cli tsc进行类型检查时,不会出现这些错误。