包管理器
如果遇到出现重复包的情况,可以使用以下命令来解决
例如报错:
TypeError: Cannot read properties of null (reading 'useMemo')
pnpm up -r
错误整理
Type error: 'Component' cannot be used as a JSX component.
加上这个 tsconfig.json 的配置
{
"compilerOptions": {
// ....
"paths": {
"@/*": ["./src/*"],
"react": [ "./node_modules/@types/react" ] // This is the line you need
}
},
}