For me this works:
vercel.json
{ "version": 2, "functions": { "api/index.ts": {} } }
package.json
{ "scripts": { "dev": "nodemon api/index.ts", "build": "tsc", }, }