fierce-camera-61577
07/11/2021, 6:46 AMindex.ts
file, and also organize it so that infrastructure definition is separate from “runtime” application (e.g. Lambda code), you may have encountered issues with either compiling (module not found) or runtime (tslib not found) because you didn’t have all your runtime application code in the same part of the directory tree as the infrastructure code, and used import
to either non-relative or ../
paths.NODE_PATH=$PWD pulumi up
trick with tsconfig paths
. https://github.com/pulumi/pulumi/issues/5455#issuecomment-877741098paths
in conjunction with package.json workspaces
.proud-pizza-80589
07/11/2021, 10:16 AMfierce-camera-61577
07/11/2021, 11:02 AMdamp-school-17708
07/12/2021, 7:43 AMearly-keyboard-41388
08/20/2021, 11:09 AMmodule not found
on deployed lambda.
I’m trying to get familiarized with Pulumi, so if that blog post has been published would be of help.fierce-camera-61577
08/20/2021, 12:38 PMearly-keyboard-41388
08/26/2021, 4:41 PM