How should I configure my serverless.ts to split in different zip each lambda functions I am working with?

I know there is suppose to be a way but I can’t find it in the docs yet, thanks

I went with:

  package: {
    individually: true,
  },

and it did just what I needed :slight_smile:

For anyone else that stumbles upon this and thinks, “where do I add this?”

See packaging section of documentation.