Skip to content

Commit fc7725c

Browse files
authored
build: tsconfig skipLibCheck: true (#1250)
fixes https://github.com/CycloneDX/cyclonedx-javascript-library/actions/runs/15572583051/job/43851344429 caused by oozcitak/util#13 some new transitive dependency `@oozcitak/util` was introduced, and this causes friction ... so we need to adjust our typing a bit ... Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 6fad129 commit fc7725c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@
102102

103103
/* Completeness */
104104
"skipDefaultLibCheck": false, /* Skip type checking .d.ts files that are included with TypeScript. */
105-
"skipLibCheck": false /* Skip type checking all .d.ts files. */
105+
// needed for https://github.com/oozcitak/util/issues/13
106+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
106107
},
107108
"exclude": [
108109
"node_modules",

0 commit comments

Comments
 (0)