This message was deleted.
# getting-started
s
This message was deleted.
g
Has your typescript lambda function been compiled to js?
In other words, does handler.js exist in
./handler
?
f
Nope - it's typescript, and looking at the lambda payload it's ts there too
I'm guessing the node runtime doesn't speak typescript?
g
Correct, your lambda function code needs to be compiled from ts to js, in order to execute in AWS.
f
lmao that fixed it, thanks!
I blame not touching the js ecosystem since pre-ts 😅