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
{{ message }}
This repository has been archived by the owner on May 5, 2022. It is now read-only.
Bug vs/* modules not resolved. I believe this is because the "baseUrl" option is either not respected or being set incorrectly.
If you run tsc -p tsconfig.json, the modules are properly resolved.
Moving from "moduleResolution": "node" to "moduleResolution": "classic" would let us consume @types packages normally instead of maintaining our own copies of them
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Repo
In VS Code, try changing our
src/tsconfig
to use"moduleResolution": "node"
:Run build script using tsb
Bug
vs/*
modules not resolved. I believe this is because the"baseUrl"
option is either not respected or being set incorrectly.If you run
tsc -p tsconfig.json
, the modules are properly resolved.Moving from
"moduleResolution": "node"
to"moduleResolution": "classic"
would let us consume@types
packages normally instead of maintaining our own copies of themThe text was updated successfully, but these errors were encountered: