serverless-plugin-typescript-express

1.0.8 • Public • Published

Serverless Plugin Typescript Express

serverless

Features

  • Integrates with serverless-offline (live reload without restart server)
  • It's not necessary complementary configuration

Instalation and use

yarn add --dev serverless-plugin-typescript-express

or

npm install --save-dev serverless-plugin-typescript-express

Add the following plugin to your serverless.yml:

plugins:
  - 'serverless-plugin-typescript-express'

tsconfig.json

The default tsconfig.json file used by the plugin looks like this:

{
    "compilerOptions": {
      "target": "es6",
      "module": "commonjs",
      "outDir": "dist",
      "sourceMap": true,
      "experimentalDecorators": true,
      "emitDecoratorMetadata": true,
      "isolatedModules": false,      
      "lib": [ 
        "es6", 
        "dom" 
      ]
    },
    "include": [
      "src/**/*"
    ],
    "exclude": [
      "node_modules"
    ]
  } 

The input folder src cannot be overwritten

License

MIT

Package Sidebar

Install

npm i serverless-plugin-typescript-express

Weekly Downloads

542

Version

1.0.8

License

MIT

Unpacked Size

5.55 kB

Total Files

4

Last publish

Collaborators

  • eliasjcjunior