diff --git a/stories/tsconfig.json b/stories/tsconfig.json index 7c37010e..3cb547f7 100644 --- a/stories/tsconfig.json +++ b/stories/tsconfig.json @@ -1,11 +1,17 @@ { "extends": "../tsconfig.json", - "include": [".", "../types"], + "include": [ + ".", + "../types" + ], "compilerOptions": { "declaration": false, + "skipLibCheck": true, "baseUrl": "../", "paths": { - "@hospitalrun/components": ["../src"] + "@hospitalrun/components": [ + "../src" + ] } } } diff --git a/tsconfig.json b/tsconfig.json index 941d6689..0ce1e239 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,7 @@ ], "strict": true, "esModuleInterop": true, + "skipLibCheck": true, "declaration": true, "sourceMap": true, "removeComments": true,