This message was deleted.
# typescript
s
This message was deleted.
w
've noticed that if i make a new module and import it from within my index.ts file, pulumi won't create any of the resources unless i reference them
This is a slightly unfortunate TypeScript gotcha. If you use
import "file"
syntax, it should work.
👍 1
s
that worked, thanks for the quick answer @white-balloon-205!