Files
serverless-webpack/examples/typescript/serverless.yml
Francisco GuimarĂ£es a7045b23d1 - Upgrading node runtime
- Using slsw.lib.entries with in typescript example
2017-08-02 20:58:17 -03:00

19 lines
309 B
YAML

service: serverless-webpack-typescript-example
# Add the serverless-webpack plugin
plugins:
- serverless-webpack
provider:
name: aws
runtime: nodejs6.10
functions:
hello:
handler: handler.hello
events:
- http:
method: get
path: hello
integration: lambda