Skip to content

Commit f6e8e1c

Browse files
authored
fix(instrumentation-aws-sdk): use skipLibCheck option to avoid compilation error (#3041)
1 parent 2368396 commit f6e8e1c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/instrumentation-aws-sdk/tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
"extends": "../../tsconfig.base",
33
"compilerOptions": {
44
"rootDir": ".",
5-
"outDir": "build"
5+
"outDir": "build",
6+
// @smithy/core upgraded to [email protected] in https://github.com/smithy-lang/smithy-typescript/pull/1579
7+
// resulting in this issue https://github.com/microsoft/TypeScript/issues/60638
8+
// which is a breaking change for us. We should keep this option until we update to
9+
// TypeScript 5.7+
10+
"skipLibCheck": true
611
},
712
"include": [
813
"src/**/*.ts",

0 commit comments

Comments
 (0)