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

In version>1.1.7, the behavior of how this plugin handles node_modules seems to have changed. In our project, we have multiple sub-projects which all share the same dependencies. Rather than having...

When I import in typescript from "src/abc/lol.ts", and run "npm run build", the resulting path is converted correctly to "../abc/lol". However, running "serverless offline start", the path did not change....

Adding ``` { ... "noEmit": true, ... } ``` to `tsconfig.json` causes this error. Removing this line results in a successful compile. ``` > [email protected] lambda /Users/user/code/foobar > serverless offline...

bug

Hello. This package [overrides the servicePath](https://github.com/serverless/serverless-plugin-typescript/blob/master/src/index.ts#L146), causing issues for other plugins that are now trying to find files (such as the `schema.graphql`) in the `.build` folder instead of the root....

Hi there! I am using shortcut paths in my `tsconfig.json` file. For example: ```json { "compilerOptions": { ... "paths": { "@app/*": ["./src/*"], } } } ``` Paths are not expanded/resolved...

Well, When we're working with apis, the user has power to send things different of what we were expecting... To fix that i use ttypescript (https://github.com/cevek/ttypescript) and typescript-is (https://github.com/woutervh-/typescript-is). Is...

question

Heya. First off just wanted to say this plugin made my life a whole lot easier by not dealing with compilation configuration :) The current issue I am running into...

source-map-support is imported inside the function, so I don't think it should be installed as a dev dependency. If I install source-map-support as a dev dependency, and invoke the function...