Reputation: 68393
I looked inside loopback's package.json but there was no main
section in it to indicate its entry point.
Does anyone know which script is the entry point for loopback module?
Upvotes: 1
Views: 57
Reputation: 32127
If there's no main
section in the package.json
, it reverts to index.js
by default.
Upvotes: 2