Skip to content

Commit

Permalink
fix(GuSSMParameter): Remove source mapping for the inline lamba to co…
Browse files Browse the repository at this point in the history
…mply with lambda character limit

Previously, our GuSSMParameter would break on usage due to the generated lambda.js file being long (over 4096 chars). This is due to the unnecessary source map comment at the end of the file. This commit removes the source mapping for that specific file by using tsconfig.json inheritance.
  • Loading branch information
Stephen Geller committed May 13, 2021
1 parent 2538aad commit 8a4bb37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"inlineSourceMap": true,
"sourceMap": true,
"inlineSourceMap": false,
"inlineSources": true,
"experimentalDecorators": true,
"typeRoots": ["./node_modules/@types"],
Expand Down

0 comments on commit 8a4bb37

Please sign in to comment.