Hi Sophie, Pulumi will respect the `main` field in...
# general
b
Hi Sophie, Pulumi will respect the
main
field in the NPM
package.json
file (https://docs.npmjs.com/files/package.json#main). So, for example
Copy code
{
    "name": "my-project",
    "main": "bin/index.js",
    ...
}
will instruct Pulumi to load the main file from
./bin/index.js
.
a
Thank you, Joe. That's very useful