Just wondering if there is a solid solution to usi...
# general
b
Just wondering if there is a solid solution to using path aliases for typescript pulumi applications, we have a monorepo something like:
Copy code
root
  tsconfig.json
  \_packages

     \_ cloud
         \_ tsconfig.json
         |_ Pulumi.yaml
         |_ infra
             \_ index.ts

     \_ cluster
         \_ tsconfig.json
         |_ Pulumi.yaml
         |_ infra
             \_ index.ts
In this structure we currently share typings and utilities from cloud package (to say cluster package) using
@package/cloud
. The package tsconfigs reference the root tsconfig. Path aliases are working for all other typescript parts of the application and are defined in the root tsconfig. Can’t seem to get this working with pulumi though, anyone got an example of this they can share?