serverless-plugin-typescript
serverless-plugin-typescript copied to clipboard
Serverless plugin for zero-config Typescript support
Hi, We are using this (great) plugin together with sls-offline, but we are using ts-node, so we would like to disable the tsc auto compile hook (just for local mide,...
When I tried to run 'sls deploy', the following error is shown: `EPERM: operation not permitted, unlink '/Users/sofyan.ahmad/Projects/project-name/.build/node_modules'` The error is gone when I reverted back to version 1.1.7
The following error message in typescript.js doesn't reflect the full path but only the filename. Error: Typescript compilation failed. Please ensure handlers exists with ext .ts or .js at /home/runner/work/40Seas/40Seas/node_modules/serverless-plugin-typescript/dist/src/typescript.js:71:15...
As per https://www.serverless.com/blog/container-support-for-lambda, you can now use the `image` property in function instead of a `handler`. Error ```typescript Type Error --------------------------------------------- TypeError: Cannot read property 'split' of undefined ``` is...
I've created a repro repo to demonstrate the problem: https://github.com/tamlyn/sls-package-bug Essentially the problem is this: - use the `package.patterns` SLS config to copy files into the package - run a...
I'm using [ts-lambda-api](https://djfdyuruiry.github.io/ts-lambda-api/) as a framework for my application, which allows me to declare controllers using decorators that are discovered at runtime, rather than statically declared. It seems like the...
There are 2 issues when using serverless-plugin-typescript in combination with serverless compose: For context, this is my folder structure: /api handler.ts serverless.yml package.json serverless-compose.yml I have taken it from this...
Invoking a function locally with `serverless invoke local -f hello` works the first time, but returns the following error on subsequent runs: ``` EEXIST: file already exists, symlink '/home/rodrigo/Repos/upnid-api/functions/boletos/node_modules' ->...
Hi, This pr fixed issues that tsconfig include files to watch and compile. Please have a look at it and hope this obeys how to contribute. Reference issues are [Issue...
When I have project-scoped declaration file(`*.d.ts`) in my project, packaging with `serverless-plugin-typescript` emits compile error like below: ``` Cannot find name 'TypeInterfaceName'. ``` (But regardless of the error, packaging is...