serverless-plugin-typescript icon indicating copy to clipboard operation
serverless-plugin-typescript copied to clipboard

Serverless plugin for zero-config Typescript support

Results 125 serverless-plugin-typescript issues
Sort by recently updated
recently updated
newest added

I have a project that needs to use some Java functions but the majority is using typescript. Unless I'm missing something, I didn't see a way to do that with...

My project is set as `yarn zero install` so I thought this plugin was about it. I did the steps in [README](https://github.com/serverless/serverless-plugin-typescript): ``` yarn add --dev serverless-plugin-typescript typescript # Add...

This PR fixes https://github.com/prisma-labs/serverless-plugin-typescript/issues/210 Not all projects have a `node_modules` directory in them

If `node_modules` doesn't exist. ``` Serverless: Typescript compiled. Error -------------------------------------------------- Error: ENOENT: no such file or directory, stat '.. my-project\..\lamdba\node_modules' ```

**serverless.yml** ``` plugins: - serverless-webpack - serverless-offline-sqs - serverless-offline - serverless-plugin-typescript ... custom: serverless-offline-sqs: endpoint: http://localhost:4576 region: ap-southeast-2 functions: goalUpdateHandler: handler: src/handler.handleGoalUpdate reservedConcurrency: 1 events: - sqs: queueName: GoalNotificationQueue arn:...

bug

On a deploy ( sls deploy --force) is not picking up any newly created directory in the project. I have tried adding an include to the tsconfig. Adding to the...

Hi, we 've been having this error message since the 2.12 update `ENOENT: no such file or directory, open 'project/.serverless/LambdaNodeModules.zip` Our Lambda layer config is as below ``` layers: LambdaNodeModules:...

If there are errors in the typescript, the deploy continues. I'm using noImplicitAny and getting errors, but the deploy continues.

The plugin appears to only compile the `.ts` files that contain handler functions. It should support compiling a project based on [files/include/exclude](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) in `tsconfig.json`. Use case: I have my handler...

enhancement

Hi, I have some import in my project that depends on local commons module shared between my different functions. I don't want to put them on public npm and don't...