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
In server and client in order to make typescript not yell about shared not existing i added shared to rootdirs for those packages, but this also means that it thinks that the source of shared is literally accessible through relative paths (it's a virtual src folder that includes both of them)
typescript composite packages, which haven't been released just yet, solve this problem to the best of my knowledge: microsoft/TypeScript#25600
If we use that we can also simplify the publish script for client since only having the real rootDir will cause the dist directory to flatten.
The text was updated successfully, but these errors were encountered:
In server and client in order to make typescript not yell about
shared
not existing i added shared to rootdirs for those packages, but this also means that it thinks that the source ofshared
is literally accessible through relative paths (it's a virtualsrc
folder that includes both of them)typescript composite packages, which haven't been released just yet, solve this problem to the best of my knowledge: microsoft/TypeScript#25600
If we use that we can also simplify the publish script for
client
since only having the realrootDir
will cause thedist
directory to flatten.The text was updated successfully, but these errors were encountered: