We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
typescript@^3.8.3 "@types/jest": "^25.1.4", "@types/node": "^13.9.8", "@types/react": "^16.9.29", "@types/react-dom": "^16.9.5"
yarn build
Running yarn start with the typescript dependencies, I see the following error with minimal clues on where the problem is,
yarn start
yarn run v1.22.4 $ yarn relay $ relay-compiler --src ./src --schema ./schema.graphql HINT: pass --watch to keep watching for changes. Writing js Unchanged: 29 files $ react-app start Cannot read property 'tap' of undefined error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
My tsconfig.json is the default generated one and I've been trying to dig into the configs but no luck yet,
tsconfig.json
{ "compilerOptions": { "target": "es5", "lib": [ "dom", "dom.iterable", "esnext" ], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, "jsx": "preserve" }, "include": [ "src" ] }
Anyone care to shed some light? Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Typescript packages added
Findings
yarn build
runs successfully and builds with the typescript packagesProblem
Running
yarn start
with the typescript dependencies,I see the following error with minimal clues on where the problem is,
My
tsconfig.json
is the default generated one and I've been trying to dig into the configs but no luck yet,Anyone care to shed some light? Thanks.
The text was updated successfully, but these errors were encountered: