Skip to content

Commit 8c96f0c

Browse files
committed
Add skipLibCheck to Storybook TypeScript configuration
1 parent cd3944e commit 8c96f0c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/react-interactive-input/tsconfig.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"compilerOptions": {
44
// Type Checking
55
"strict": true,
6-
"skipLibCheck": true,
76

87
// Modules
98
"module": "ESNext",
@@ -28,6 +27,9 @@
2827

2928
// Project
3029
"composite": true,
31-
"tsBuildInfoFile": "../../node_modules/.tmp/react-interactive-input.tsbuildinfo"
30+
"tsBuildInfoFile": "../../node_modules/.tmp/react-interactive-input.tsbuildinfo",
31+
32+
// Completeness
33+
"skipLibCheck": true
3234
}
3335
}

stories/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737

3838
// Projects
3939
"composite": true,
40-
"tsBuildInfoFile": "../node_modules/.tmp/stories.tsbuildinfo"
40+
"tsBuildInfoFile": "../node_modules/.tmp/stories.tsbuildinfo",
41+
42+
// Completeness
43+
"skipLibCheck": true
4144
}
4245
}

0 commit comments

Comments
 (0)