-
|
I see that you can specify |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I've fairly sure that Npm should only be needed for the automatic type acquisition. I say "fairly" because that's functionality that's embedded into the Automatic type acquisition is not an essential feature and it's fine to run without it (I personally do that myself). Just make sure that your project explicitly includes all needed You can even disable the additional process dedicated for it by passing a |
Beta Was this translation helpful? Give feedback.
I've fairly sure that Npm should only be needed for the automatic type acquisition. I say "fairly" because that's functionality that's embedded into the
typescriptitself and I'm not bothered to check its code base.Automatic type acquisition is not an essential feature and it's fine to run without it (I personally do that myself). Just make sure that your project explicitly includes all needed
@types/*.You can even disable the additional process dedicated for it by passing a
disableAutomaticTypingAcquisition: trueoption to the server. That should get rid of the warning also.