Files
serverless-webpack/examples/typescript/serverless.yml
T
2017-01-09 16:21:43 +00:00

19 lines
308 B
YAML

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