Frédéric Barthelet

Results 47 comments of Frédéric Barthelet

#10 managed to export all definitions referenced in JSON schema. But this does not include CFN resource, which is not defined as a `$ref`. First experimentations with quicktype - #1...

Hi @Woodz, thanks for opening this issue. JSON schema used by the Serverless framework to validate any service file is programmatically built using a set of APIs, mostly exposed to...

Hi @appletreeat56 and thanks for submitting your issue. Could you please share your `serverless.ts` service file content here ? This repository translates Serverless framework internal validation constraints in Typescript definition....

Serverless switched back to ajv `v6` due to performance issue. Currently opened draft PR to switch to `v7` (https://github.com/serverless/serverless/pull/8779) will be implemented with `v3` of Serverless framework

Hi @bfaulk96, thanks for the suggestion. Typescript indeed allow string templates as valid types. However, the typescript definitions in this repository are auto-generated from JSON-schema definitions within serverless framework. Implementing...

Hello @ggmartins and thanks for your interest in this project :) If I understood correctly, you're trying to migrate from `serverless.yaml` to `serverless.ts` service definition file ? Be aware that...

Thanks for raising this issue @justingrant. > Could the TS_NODE_PROJECT workaround be documented somewhere other than Support tsconfig-paths and specify tsconfig*.json #28 ? I'd be happy to accept a documentation...

Thanks for raising this issue @coyoteecd. The problem you're pointing out actually extend to all definition file properties where serverless variables can be used. This issue was raised in https://github.com/serverless/typescript/issues/11...

Hi @Eikix and thanks for the proposal :) I believe `import type` statements are stripped altogether at compilation by Typescript, and are therefore not used during bundling phase. You can...

Agreed @DonMagee. In addition, such feature would be a BC if not disabled by default. I drafted a first PR just to have a base for conversation. I added the...