Deploying typescript serverless functions

Thanks that did the trick. For anyone reading in the future, the solution was simply adding

{
  "compilerOptions": {
    "module": "ESNext",
    "moduleResolution": "node"
  }
}

to tsconfig.json.

1 Like