serverless-plugin-typescript
serverless-plugin-typescript copied to clipboard
Is there anyway to run `serverless offline` without generate ".build" directory?
I don't think so, as the package does need to bundle the lambda .ts function on some folder before serving locally.
How about running invoke local -f without transpiling if the file already exists?
The point is, serverless offline should be started for invoking any task and already transpiles all ts files so have no sense doing again the same on each invoke, and if you want to rebuild on each change could use serverless offline --watch so...