Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(storybook): fix storybook build adding "skipLibCheck": true
Browse files Browse the repository at this point in the history
  • Loading branch information
fox1t committed Jun 16, 2020
1 parent 7b4769e commit 683c2b8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions stories/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
{
"extends": "../tsconfig.json",
"include": [".", "../types"],
"include": [
".",
"../types"
],
"compilerOptions": {
"declaration": false,
"skipLibCheck": true,
"baseUrl": "../",
"paths": {
"@hospitalrun/components": ["../src"]
"@hospitalrun/components": [
"../src"
]
}
}
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"sourceMap": true,
"removeComments": true,
Expand Down

0 comments on commit 683c2b8

Please sign in to comment.