Skip to content

brighttank/serverless-plugin-typescript-express

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%