-
Typescript is showing errors for missing packages, I am running the boilerplate with docker and the node_modules folder is empty as those are installed on the docker instance separately. I looked into creating the devcontainer.json but not sure if that is the recommended way to go, also by doing this I lose all the git functionality in VS Code. |
Beta Was this translation helpful? Give feedback.
Answered by
mkosir
Aug 6, 2021
Replies: 1 comment 1 reply
-
Hey @jassMarok, for local development so IDE can recognize the packages and infer types for intellisense support you must first do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
mkosir
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @jassMarok, for local development so IDE can recognize the packages and infer types for intellisense support you must first do
npm install
.