serverless-plugin-typescript_ajmath
v0.2.0-ajmath
Published
[](http://www.serverless.com) [](https://badge.fury.io/js/serverless-plugin-typescript) [
Install
yarn add --dev serverless-plugin-typescriptAdd the following plugin to your serverless.yml:
plugins:
- serverless-plugin-typescriptExample
See example folder for a minimal example.
tsconfig.json
The default tsconfig.json file used by the plugin looks like this:
{
"preserveConstEnums": true,
"strictNullChecks": true,
"sourceMap": true,
"target": "es5",
"outDir": ".build",
"moduleResolution": "node",
"lib": ["es2015"],
}Note: Don't confuse the
tsconfig.jsonin this repository with the one mentioned above.
Including extra files
All files from package/include will be included in the final build file. See Exclude/Include
Help & Community 
Join our Slack community if you run into issues or have questions. We love talking to you!

