We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
skipLibCheck
1 parent 2368396 commit f6e8e1cCopy full SHA for f6e8e1c
packages/instrumentation-aws-sdk/tsconfig.json
@@ -2,7 +2,12 @@
2
"extends": "../../tsconfig.base",
3
"compilerOptions": {
4
"rootDir": ".",
5
- "outDir": "build"
+ "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
11
},
12
"include": [
13
"src/**/*.ts",
0 commit comments