serverless-plugin-typescript
serverless-plugin-typescript copied to clipboard
Serverless plugin for zero-config Typescript support
When a developer makes a mistake and has noEmit with a value of true in their tsconfig.json, this plugin errors out with "Typescript compilation failed" message. The message is wrong,...
[Here](https://github.com/venkatramachandran/ts-sample) is a reproducible test case. To reproduce the error: 1. Run `git clone https://github.com/venkatramachandran/ts-sample` 2. Run `cd ts-sample` 3. Run `npm run make` 4. Run `npm run pack` I...
I notice that to get get source maps working it suggests that Webpack is required. Is there any instructions on using this plugin with Webpack? Is it as simple as...
Hi, I've noticed that when I provide `--path` parameter in `sls invoke local -f .. -p path/to/event.json` the invocation finishes with error: `The file you provided does not exist.`. I...
Hi, Serverless commands throws **Cannot read property 'replace' of undefined** when using the `extend` property with local file eg. ` "extends": "../../tsconfig.settings.json",` Can be reproduced with the following file. ```json...
Otherwise fails with: ``` 'export { hello };', '^^^^^^', '', 'SyntaxError: Unexpected token export', ``` if it was set to `"module": "ESNext"`
Fixes the issue where the artifact name for an individually packaged function will be incorrect if the function is marked as individually packaged locally and not at the global level
Hi. I'm using this plugin on a small project with AWS Lambda. Now I want to add a Lambda authorizer function. The problem is that the plugin does not compile...
Issue #93 involves adding support for OpenWhisk. There may be a number of issues changes required to fully support OpenWhisk. This is a bare minimum I believe, because without this...
Hello, I want to build an Alexa Skill using typescript and serverless - which are both quite new for me. The basic code - before I added typescript - was...