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
cd serverless-mono-example && yarn install && code .
if you change a typing in package random, it is not picked up by intellisense in typescript packages that reference to it in the same workspace (e.g. sls-random); you'd have to compile first
for example, change fetchRandomNumber in random to return a Promise<string>, and sls-random still expects a Promise<number>
Note that sls-random is connected with random through Typescript 3 references:
Steps to Reproduce:
git clone git@github.com:tommedema/serverless-mono-example.git
cd serverless-mono-example && yarn install && code .
random
, it is not picked up by intellisense in typescript packages that reference to it in the same workspace (e.g.sls-random
); you'd have to compile firstfor example, change
fetchRandomNumber
inrandom
to return aPromise<string>
, andsls-random
still expects aPromise<number>
Note that
sls-random
is connected withrandom
through Typescript 3 references:And therefore intellisense should pickup the referenced typings dynamically.
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered: