serverless-plugin-typescript
serverless-plugin-typescript copied to clipboard
Serverless plugin for zero-config Typescript support
i'm trying to deploy docker image through sls ``` functions: generatePdf: # handler: src/api/generate.pdf images: 498157479666.dkr.ecr.ap-southeast-1.amazonaws.com/automate-pdf:latest@sha256:98e17f123e538564dff238122cc31ab38ddf1e735e4cc5f7be853cc2cc5e1dee description: A lambda handler that generates PDF file from payload data and upload it...
I need to use `ttsc` instead of `tsc` in order to compile with some custom transformation. There is a way to specify the compilation command? https://github.com/cevek/ttypescript
[](https://workerb.linearb.io/v2/badge/collaboration-page?magicLinkId=rXwqv21) Fixes [#280](https://github.com/serverless/serverless-plugin-typescript/issues/280) in order to support container Image for AWS Lambda, the `handler` attribute in function is no longer a mandatory one and can be replaced with `image` attribute....
Hi there! I have been really enjoying this plugin! 😁 I have one question. For my project, I have some *.html files that I use for email templates. When I...
Hello, I got an issue with the package 'individually' not working. I have setup a simple project to easily test it: - `serverless.yml`: ```yaml service: sls-ts-package-individually frameworkVersion: "3" configValidationMode: error...
Currently, when the handler file cannot be found, only the exact file path is printed out in the console.log. It would be more convenient to include the exact path in...
Hello 👋🏼 Actually types reject new runtime version: ``` Cannot load "serverless.ts": Initialization error: TSError: ⨯ Unable to compile TypeScript: serverless.ts:14:5 - error TS2820: Type '"nodejs20.x"' is not assignable to...
Hi, Just wondering if anyone has managed to get source map uploads when using https://github.com/arabold/serverless-sentry-plugin and `serverless-plugin-typescript` to build and deploy ts lambdas. Serverless plugin typescript temporarily creates its outputs...
Affects v3 pre-release. Throws an error like this when I run serverless deploy: ``` Error: EISDIR: illegal operation on a directory, unlink '//.build/node_modules' ``` Mentioned in https://github.com/serverless/serverless/issues/10326#issuecomment-1783582404 - but this...
The feature introduced in 2.1.5 by the PR https://github.com/serverless/serverless-plugin-typescript/pull/190 about compiling ts files matched by the tsconfig include is hard coded to read the 'tsconfig.json' file from the directory. In...