Problem:
When cloning the repository and installing & running examples/with-typescript the razzle script gives a lot of errors.
Steps to reproduce (are the same as in the example readme):
`
curl https://codeload.github.com/jaredpalmer/razzle/tar.gz/master | tar -xz --strip=2 razzle-master/examples/with-typescript
cd with-typescript
yarn install
yarn start
`
Notes:
As can be seen on the end of output the TypeScript version is reported as "Version: typescript 2.9.2" even though package.json has "typescript": "^2.8.3" as devDependency. This is not the root cause of the errors, but if specific TypeScript version is wanted to be run then dependency should be declared as exact version "2.8.3", yarn for some reason resolves ^2.8.3 (and infact also earlier 2.x versions) to the latest available TypeScript version.
Yarn version:
yarn --version
1.7.0
OS:
Budgie Linux 18.04 (ie. Ubuntu 18.04), up-to-date.
Output:
→ yarn start
yarn run v1.7.0
$ razzle start
WAIT Compiling...
Starting type checking and linting service...
Using 1 worker with 2048MB memory limit
Watching: /with-typescript/src
✔ success client compiled in 3s 835ms
Type checking and linting in progress...
✔ success server compiled in 1s 209ms
✅ Server-side HMR Enabled!
Started on port 3000
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3535,13):
TS2717: Subsequent property declarations must have the same type. Property 'a' must be of type 'DetailedHTMLProps, HTMLAnchorElement>', but here has type 'DetailedHTMLProps , HTMLAnchorElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3536,13):
TS2717: Subsequent property declarations must have the same type. Property 'abbr' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3537,13):
TS2717: Subsequent property declarations must have the same type. Property 'address' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3538,13):
TS2717: Subsequent property declarations must have the same type. Property 'area' must be of type 'DetailedHTMLProps, HTMLAreaElement>', but here has type 'DetailedHTMLProps , HTMLAreaElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3539,13):
TS2717: Subsequent property declarations must have the same type. Property 'article' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3540,13):
TS2717: Subsequent property declarations must have the same type. Property 'aside' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3541,13):
TS2717: Subsequent property declarations must have the same type. Property 'audio' must be of type 'DetailedHTMLProps, HTMLAudioElement>', but here has type 'DetailedHTMLProps , HTMLAudioElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3542,13):
TS2717: Subsequent property declarations must have the same type. Property 'b' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3543,13):
TS2717: Subsequent property declarations must have the same type. Property 'base' must be of type 'DetailedHTMLProps, HTMLBaseElement>', but here has type 'DetailedHTMLProps , HTMLBaseElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3544,13):
TS2717: Subsequent property declarations must have the same type. Property 'bdi' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3545,13):
TS2717: Subsequent property declarations must have the same type. Property 'bdo' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3546,13):
TS2717: Subsequent property declarations must have the same type. Property 'big' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3547,13):
TS2717: Subsequent property declarations must have the same type. Property 'blockquote' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3548,13):
TS2717: Subsequent property declarations must have the same type. Property 'body' must be of type 'DetailedHTMLProps, HTMLBodyElement>', but here has type 'DetailedHTMLProps , HTMLBodyElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3549,13):
TS2717: Subsequent property declarations must have the same type. Property 'br' must be of type 'DetailedHTMLProps, HTMLBRElement>', but here has type 'DetailedHTMLProps , HTMLBRElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3550,13):
TS2717: Subsequent property declarations must have the same type. Property 'button' must be of type 'DetailedHTMLProps, HTMLButtonElement>', but here has type 'DetailedHTMLProps , HTMLButtonElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3551,13):
TS2717: Subsequent property declarations must have the same type. Property 'canvas' must be of type 'DetailedHTMLProps, HTMLCanvasElement>', but here has type 'DetailedHTMLProps , HTMLCanvasElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3552,13):
TS2717: Subsequent property declarations must have the same type. Property 'caption' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3553,13):
TS2717: Subsequent property declarations must have the same type. Property 'cite' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3554,13):
TS2717: Subsequent property declarations must have the same type. Property 'code' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3555,13):
TS2717: Subsequent property declarations must have the same type. Property 'col' must be of type 'DetailedHTMLProps, HTMLTableColElement>', but here has type 'DetailedHTMLProps , HTMLTableColElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3556,13):
TS2717: Subsequent property declarations must have the same type. Property 'colgroup' must be of type 'DetailedHTMLProps, HTMLTableColElement>', but here has type 'DetailedHTMLProps , HTMLTableColElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3557,13):
TS2717: Subsequent property declarations must have the same type. Property 'data' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3558,13):
TS2717: Subsequent property declarations must have the same type. Property 'datalist' must be of type 'DetailedHTMLProps, HTMLDataListElement>', but here has type 'DetailedHTMLProps , HTMLDataListElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3559,13):
TS2717: Subsequent property declarations must have the same type. Property 'dd' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3560,13):
TS2717: Subsequent property declarations must have the same type. Property 'del' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3561,13):
TS2717: Subsequent property declarations must have the same type. Property 'details' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3562,13):
TS2717: Subsequent property declarations must have the same type. Property 'dfn' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3563,13):
TS2717: Subsequent property declarations must have the same type. Property 'dialog' must be of type 'DetailedHTMLProps, HTMLDialogElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3564,13):
TS2717: Subsequent property declarations must have the same type. Property 'div' must be of type 'DetailedHTMLProps, HTMLDivElement>', but here has type 'DetailedHTMLProps , HTMLDivElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3565,13):
TS2717: Subsequent property declarations must have the same type. Property 'dl' must be of type 'DetailedHTMLProps, HTMLDListElement>', but here has type 'DetailedHTMLProps , HTMLDListElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3566,13):
TS2717: Subsequent property declarations must have the same type. Property 'dt' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3567,13):
TS2717: Subsequent property declarations must have the same type. Property 'em' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3568,13):
TS2717: Subsequent property declarations must have the same type. Property 'embed' must be of type 'DetailedHTMLProps, HTMLEmbedElement>', but here has type 'DetailedHTMLProps , HTMLEmbedElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3569,13):
TS2717: Subsequent property declarations must have the same type. Property 'fieldset' must be of type 'DetailedHTMLProps, HTMLFieldSetElement>', but here has type 'DetailedHTMLProps , HTMLFieldSetElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3570,13):
TS2717: Subsequent property declarations must have the same type. Property 'figcaption' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3571,13):
TS2717: Subsequent property declarations must have the same type. Property 'figure' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3572,13):
TS2717: Subsequent property declarations must have the same type. Property 'footer' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3573,13):
TS2717: Subsequent property declarations must have the same type. Property 'form' must be of type 'DetailedHTMLProps, HTMLFormElement>', but here has type 'DetailedHTMLProps , HTMLFormElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3574,13):
TS2717: Subsequent property declarations must have the same type. Property 'h1' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3575,13):
TS2717: Subsequent property declarations must have the same type. Property 'h2' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3576,13):
TS2717: Subsequent property declarations must have the same type. Property 'h3' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3577,13):
TS2717: Subsequent property declarations must have the same type. Property 'h4' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3578,13):
TS2717: Subsequent property declarations must have the same type. Property 'h5' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3579,13):
TS2717: Subsequent property declarations must have the same type. Property 'h6' must be of type 'DetailedHTMLProps, HTMLHeadingElement>', but here has type 'DetailedHTMLProps , HTMLHeadingElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3580,13):
TS2717: Subsequent property declarations must have the same type. Property 'head' must be of type 'DetailedHTMLProps, HTMLHeadElement>', but here has type 'DetailedHTMLProps , HTMLHeadElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3581,13):
TS2717: Subsequent property declarations must have the same type. Property 'header' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3582,13):
TS2717: Subsequent property declarations must have the same type. Property 'hgroup' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3583,13):
TS2717: Subsequent property declarations must have the same type. Property 'hr' must be of type 'DetailedHTMLProps, HTMLHRElement>', but here has type 'DetailedHTMLProps , HTMLHRElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3584,13):
TS2717: Subsequent property declarations must have the same type. Property 'html' must be of type 'DetailedHTMLProps, HTMLHtmlElement>', but here has type 'DetailedHTMLProps , HTMLHtmlElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3585,13):
TS2717: Subsequent property declarations must have the same type. Property 'i' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3586,13):
TS2717: Subsequent property declarations must have the same type. Property 'iframe' must be of type 'DetailedHTMLProps, HTMLIFrameElement>', but here has type 'DetailedHTMLProps , HTMLIFrameElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3587,13):
TS2717: Subsequent property declarations must have the same type. Property 'img' must be of type 'DetailedHTMLProps, HTMLImageElement>', but here has type 'DetailedHTMLProps , HTMLImageElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3588,13):
TS2717: Subsequent property declarations must have the same type. Property 'input' must be of type 'DetailedHTMLProps, HTMLInputElement>', but here has type 'DetailedHTMLProps , HTMLInputElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3589,13):
TS2717: Subsequent property declarations must have the same type. Property 'ins' must be of type 'DetailedHTMLProps, HTMLModElement>', but here has type 'DetailedHTMLProps , HTMLModElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3590,13):
TS2717: Subsequent property declarations must have the same type. Property 'kbd' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3591,13):
TS2717: Subsequent property declarations must have the same type. Property 'keygen' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3592,13):
TS2717: Subsequent property declarations must have the same type. Property 'label' must be of type 'DetailedHTMLProps, HTMLLabelElement>', but here has type 'DetailedHTMLProps , HTMLLabelElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3593,13):
TS2717: Subsequent property declarations must have the same type. Property 'legend' must be of type 'DetailedHTMLProps, HTMLLegendElement>', but here has type 'DetailedHTMLProps , HTMLLegendElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3594,13):
TS2717: Subsequent property declarations must have the same type. Property 'li' must be of type 'DetailedHTMLProps, HTMLLIElement>', but here has type 'DetailedHTMLProps , HTMLLIElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3595,13):
TS2717: Subsequent property declarations must have the same type. Property 'link' must be of type 'DetailedHTMLProps, HTMLLinkElement>', but here has type 'DetailedHTMLProps , HTMLLinkElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3596,13):
TS2717: Subsequent property declarations must have the same type. Property 'main' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3597,13):
TS2717: Subsequent property declarations must have the same type. Property 'map' must be of type 'DetailedHTMLProps, HTMLMapElement>', but here has type 'DetailedHTMLProps , HTMLMapElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3598,13):
TS2717: Subsequent property declarations must have the same type. Property 'mark' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3599,13):
TS2717: Subsequent property declarations must have the same type. Property 'menu' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3600,13):
TS2717: Subsequent property declarations must have the same type. Property 'menuitem' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3601,13):
TS2717: Subsequent property declarations must have the same type. Property 'meta' must be of type 'DetailedHTMLProps, HTMLMetaElement>', but here has type 'DetailedHTMLProps , HTMLMetaElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3602,13):
TS2717: Subsequent property declarations must have the same type. Property 'meter' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3603,13):
TS2717: Subsequent property declarations must have the same type. Property 'nav' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3604,13):
TS2717: Subsequent property declarations must have the same type. Property 'noindex' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3605,13):
TS2717: Subsequent property declarations must have the same type. Property 'noscript' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3606,13):
TS2717: Subsequent property declarations must have the same type. Property 'object' must be of type 'DetailedHTMLProps, HTMLObjectElement>', but here has type 'DetailedHTMLProps , HTMLObjectElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3607,13):
TS2717: Subsequent property declarations must have the same type. Property 'ol' must be of type 'DetailedHTMLProps, HTMLOListElement>', but here has type 'DetailedHTMLProps , HTMLOListElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3608,13):
TS2717: Subsequent property declarations must have the same type. Property 'optgroup' must be of type 'DetailedHTMLProps, HTMLOptGroupElement>', but here has type 'DetailedHTMLProps , HTMLOptGroupElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3609,13):
TS2717: Subsequent property declarations must have the same type. Property 'option' must be of type 'DetailedHTMLProps, HTMLOptionElement>', but here has type 'DetailedHTMLProps , HTMLOptionElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3610,13):
TS2717: Subsequent property declarations must have the same type. Property 'output' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3611,13):
TS2717: Subsequent property declarations must have the same type. Property 'p' must be of type 'DetailedHTMLProps, HTMLParagraphElement>', but here has type 'DetailedHTMLProps , HTMLParagraphElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3612,13):
TS2717: Subsequent property declarations must have the same type. Property 'param' must be of type 'DetailedHTMLProps, HTMLParamElement>', but here has type 'DetailedHTMLProps , HTMLParamElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3613,13):
TS2717: Subsequent property declarations must have the same type. Property 'picture' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3614,13):
TS2717: Subsequent property declarations must have the same type. Property 'pre' must be of type 'DetailedHTMLProps, HTMLPreElement>', but here has type 'DetailedHTMLProps , HTMLPreElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3615,13):
TS2717: Subsequent property declarations must have the same type. Property 'progress' must be of type 'DetailedHTMLProps, HTMLProgressElement>', but here has type 'DetailedHTMLProps , HTMLProgressElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3616,13):
TS2717: Subsequent property declarations must have the same type. Property 'q' must be of type 'DetailedHTMLProps, HTMLQuoteElement>', but here has type 'DetailedHTMLProps , HTMLQuoteElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3617,13):
TS2717: Subsequent property declarations must have the same type. Property 'rp' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3618,13):
TS2717: Subsequent property declarations must have the same type. Property 'rt' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3619,13):
TS2717: Subsequent property declarations must have the same type. Property 'ruby' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3620,13):
TS2717: Subsequent property declarations must have the same type. Property 's' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3621,13):
TS2717: Subsequent property declarations must have the same type. Property 'samp' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3622,13):
TS2717: Subsequent property declarations must have the same type. Property 'script' must be of type 'DetailedHTMLProps, HTMLScriptElement>', but here has type 'DetailedHTMLProps , HTMLScriptElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3623,13):
TS2717: Subsequent property declarations must have the same type. Property 'section' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3624,13):
TS2717: Subsequent property declarations must have the same type. Property 'select' must be of type 'DetailedHTMLProps, HTMLSelectElement>', but here has type 'DetailedHTMLProps , HTMLSelectElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3625,13):
TS2717: Subsequent property declarations must have the same type. Property 'small' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3626,13):
TS2717: Subsequent property declarations must have the same type. Property 'source' must be of type 'DetailedHTMLProps, HTMLSourceElement>', but here has type 'DetailedHTMLProps , HTMLSourceElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3627,13):
TS2717: Subsequent property declarations must have the same type. Property 'span' must be of type 'DetailedHTMLProps, HTMLSpanElement>', but here has type 'DetailedHTMLProps , HTMLSpanElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3628,13):
TS2717: Subsequent property declarations must have the same type. Property 'strong' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3629,13):
TS2717: Subsequent property declarations must have the same type. Property 'style' must be of type 'DetailedHTMLProps, HTMLStyleElement>', but here has type 'DetailedHTMLProps , HTMLStyleElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3630,13):
TS2717: Subsequent property declarations must have the same type. Property 'sub' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3631,13):
TS2717: Subsequent property declarations must have the same type. Property 'summary' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3632,13):
TS2717: Subsequent property declarations must have the same type. Property 'sup' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3633,13):
TS2717: Subsequent property declarations must have the same type. Property 'table' must be of type 'DetailedHTMLProps, HTMLTableElement>', but here has type 'DetailedHTMLProps , HTMLTableElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3634,13):
TS2717: Subsequent property declarations must have the same type. Property 'tbody' must be of type 'DetailedHTMLProps, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps , HTMLTableSectionElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3635,13):
TS2717: Subsequent property declarations must have the same type. Property 'td' must be of type 'DetailedHTMLProps, HTMLTableDataCellElement>', but here has type 'DetailedHTMLProps , HTMLTableDataCellElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3636,13):
TS2717: Subsequent property declarations must have the same type. Property 'textarea' must be of type 'DetailedHTMLProps, HTMLTextAreaElement>', but here has type 'DetailedHTMLProps , HTMLTextAreaElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3637,13):
TS2717: Subsequent property declarations must have the same type. Property 'tfoot' must be of type 'DetailedHTMLProps, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps , HTMLTableSectionElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3638,13):
TS2717: Subsequent property declarations must have the same type. Property 'th' must be of type 'DetailedHTMLProps, HTMLTableHeaderCellElement>', but here has type 'DetailedHTMLProps , HTMLTableHeaderCellElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3639,13):
TS2717: Subsequent property declarations must have the same type. Property 'thead' must be of type 'DetailedHTMLProps, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps , HTMLTableSectionElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3640,13):
TS2717: Subsequent property declarations must have the same type. Property 'time' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3641,13):
TS2717: Subsequent property declarations must have the same type. Property 'title' must be of type 'DetailedHTMLProps, HTMLTitleElement>', but here has type 'DetailedHTMLProps , HTMLTitleElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3642,13):
TS2717: Subsequent property declarations must have the same type. Property 'tr' must be of type 'DetailedHTMLProps, HTMLTableRowElement>', but here has type 'DetailedHTMLProps , HTMLTableRowElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3643,13):
TS2717: Subsequent property declarations must have the same type. Property 'track' must be of type 'DetailedHTMLProps, HTMLTrackElement>', but here has type 'DetailedHTMLProps , HTMLTrackElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3644,13):
TS2717: Subsequent property declarations must have the same type. Property 'u' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3645,13):
TS2717: Subsequent property declarations must have the same type. Property 'ul' must be of type 'DetailedHTMLProps, HTMLUListElement>', but here has type 'DetailedHTMLProps , HTMLUListElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3646,13):
TS2717: Subsequent property declarations must have the same type. Property '"var"' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3647,13):
TS2717: Subsequent property declarations must have the same type. Property 'video' must be of type 'DetailedHTMLProps, HTMLVideoElement>', but here has type 'DetailedHTMLProps , HTMLVideoElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3648,13):
TS2717: Subsequent property declarations must have the same type. Property 'wbr' must be of type 'DetailedHTMLProps, HTMLElement>', but here has type 'DetailedHTMLProps , HTMLElement>'.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3651,13):
TS2717: Subsequent property declarations must have the same type. Property 'svg' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3653,13):
TS2717: Subsequent property declarations must have the same type. Property 'animate' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3654,13):
TS2717: Subsequent property declarations must have the same type. Property 'animateTransform' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3655,13):
TS2717: Subsequent property declarations must have the same type. Property 'circle' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3656,13):
TS2717: Subsequent property declarations must have the same type. Property 'clipPath' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3657,13):
TS2717: Subsequent property declarations must have the same type. Property 'defs' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3658,13):
TS2717: Subsequent property declarations must have the same type. Property 'desc' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3659,13):
TS2717: Subsequent property declarations must have the same type. Property 'ellipse' must be of type 'SVGProps', but here has type 'SVGProps '.
ERROR in /with-typescript/node_modules/@types/react-dom/node_modules/@types/react/index.d.ts(3660,13):
TS2717: Subsequent property declarations must have the same type. Property 'feBlend' must be of type 'SVGProps', but here has type 'SVGProps