Is it possible for Pulumi to use a different start...
# typescript
a
Is it possible for Pulumi to use a different starting point? e.g. I prefer to have my code in a
src/
directory, so can I make Pulumi start with
src/index.ts
instead of
index.ts
?
w
Yes - either via
main
in Pulumi.yaml (to set the root folder) or
main
in package.json (to set the entry-point file).
👍 1