From 766805e9594f92eda96ae169d12c494ed2af27bb Mon Sep 17 00:00:00 2001 From: marioiliasi Date: Thu, 27 Feb 2025 15:21:52 +0200 Subject: [PATCH] fix: add inlineSource to avoid warning when using aws-sdk-client-mock-jest package with vitest This is done because of this issue: https://github.com/m-radzikowski/aws-sdk-client-mock/issues/249 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index f74e8f8..52e5a16 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ ], "moduleResolution": "node", "strict": true, + "inlineSources": true, "sourceMap": true, "declaration": true, "esModuleInterop": true,