Herokuro react项目构建时出现如下错误
The following error occurred during the Herokuro react project build
antd input bar code 在antd中使用输入栏时发生。什么原因?
/tmp/build_1442ffe6/node_modules/antd/lib/input/Input.d.ts(16,11) 中的 TypeScript 错误:
类型预期。 TS1110
14 | status?: InputStatus;
15 | bordered?: boolean;
> 16 | [key: `data-${string}`]: string;
| ^
17 | }
18 | declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>;
19 | export default Input;
我昨天正好遇到这个问题,只有将 typescript
版本升级到 4.4 以上才能解决,在我的用例中我使用了:
yarn add typescript@latest
P.S: 我在打字编译的时候遇到了很多打字问题(编译时),我解决了,然后就可以编译成功了。
antd input bar code 在antd中使用输入栏时发生。什么原因?
/tmp/build_1442ffe6/node_modules/antd/lib/input/Input.d.ts(16,11) 中的 TypeScript 错误: 类型预期。 TS1110
14 | status?: InputStatus;
15 | bordered?: boolean;
> 16 | [key: `data-${string}`]: string;
| ^
17 | }
18 | declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>;
19 | export default Input;
我昨天正好遇到这个问题,只有将 typescript
版本升级到 4.4 以上才能解决,在我的用例中我使用了:
yarn add typescript@latest
P.S: 我在打字编译的时候遇到了很多打字问题(编译时),我解决了,然后就可以编译成功了。