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

Closes #294 Node.js 18.x requires files to be named `.mjs` instead of `.js` to use modern ES imports instead of `module.exports`. Typescript can be set up to compile it without...

Greets, I'm new to this plugin and have done some digging but currently I don't see any way of using `.mts` files to generate `.mjs` files when using `sls deploy`...

When I try to deploy only one function using layers, I got the next error: TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined And it is...

While this plugin does compile typescript, it doesn't actually check types. That is, if there's a type error the packaging or deploy still succeeds. Is there a way to make...

As mentioned in issue #272, the symlink deps are not included in the build. This PR is to copy symlink dependencies to the build package using the `dereference` feature from...

I'm using the package.artifact functionality for a different function that is not typescript. But enabling this plugin borked packaging of other functions using package.artifact. I'm not sure how else to...

Here is my tsConfig and my goal is to have compiled tsx files in a build. ``` `{ "compilerOptions": { "pretty": true, "outDir": "./dist", "baseUrl": "./src", "sourceMap": true, "target": "es6",...

Hard to describe, but this is when using multiple runtimes, and the other runtime has manual packaging. So we use the `package.artifact` configuration in serverless.yml, e.g.: ``` functions: hello: handler:...

Hello! The provided [example](https://github.com/serverless/serverless-plugin-typescript/blob/master/example/handler.ts) is missing any type information from function arguments. The documentation also doesn't provide any type declaration examples. What is the purpose of using TypeScript without specifying...

Closes: https://github.com/serverless/serverless-plugin-typescript/issues/296