You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Executing the npm run build which calls react-scripts build causes the following error
TS2322: Type '{ renderer: "canvas"; width: "auto"; height: "auto"; useCoarsePointer: true; pointerSize: number; useDirtyRect: true; }' is not assignable to type 'Opts'.
Object literal may only specify known properties, and 'useCoarsePointer' does not exist in type 'Opts'.
28 | width: "auto",
29 | height: "auto",
> 30 | useCoarsePointer: true,
| ^^^^^^^^^^^^^^^^^^^^^^
31 | pointerSize: 100,
32 | useDirtyRect: true,
33 | }}
A similar error occurs on the pointerSize: 100, and useDirtyRect: true options.
The text was updated successfully, but these errors were encountered:
There are TypeScript errors when using echarts v5.4.3 and eachrts-for-react v3.0.2,
The following is in
package.json
Here is a simple reproduction case:
Executing the
npm run build
which callsreact-scripts build
causes the following errorA similar error occurs on the
pointerSize: 100,
anduseDirtyRect: true
options.The text was updated successfully, but these errors were encountered: