Skip to content

Commit f27b699

Browse files
skip type checking of dependency .d.ts files
1 parent ed17cd9 commit f27b699

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dotcom-rendering/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
/* Aliases should also be added to the webpack and jest configurations */
1515
"*": ["node_modules/@types/*", "*"] // Make sure that package linking doesn't confuse things https://github.com/microsoft/TypeScript/issues/11916#issuecomment-257130001
1616
},
17-
"preserveConstEnums": true
17+
"preserveConstEnums": true,
18+
"skipLibCheck": true // Temporary fix for canary version testing - skip type checking of dependency .d.ts files
1819
},
1920
"include": ["**/*", ".storybook/mocks/bridgetApi.ts"],
2021
"exclude": [

0 commit comments

Comments
 (0)