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
We ran into issues with package-lock for example with dependancies using different typescript versions.
from my understanding, what is going on is when we run npm run build lerna will hoist all the dependancies meaning all the modules will be a specific version. babel will always be using the latest version of typescript, and when we look at the @types/babel___traverse file we see that type version is 4.1 "typeScriptVersion": "4.1" .
The packages within web3 are all using typescript:'3.9' which will result in an error when index.d.ts is different
Expected Behavior
build should work properly
Steps to Reproduce
pull the latest branch and try to build
Web3.js Version
1.8.1
Environment
Operating System:
Browser:
Node.js Version:
NPM Version:
Anything Else?
No response
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Current Behavior
We ran into issues with package-lock for example with dependancies using different typescript versions.
from my understanding, what is going on is when we run npm run build lerna will hoist all the dependancies meaning all the modules will be a specific version. babel will always be using the latest version of typescript, and when we look at the @types/babel___traverse file we see that type version is 4.1 "typeScriptVersion": "4.1" .
The packages within web3 are all using typescript:'3.9' which will result in an error when index.d.ts is different
Expected Behavior
build should work properly
Steps to Reproduce
pull the latest branch and try to build
Web3.js Version
1.8.1
Environment
Anything Else?
No response
The text was updated successfully, but these errors were encountered: