diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 076878b..e7209d2 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -1 +1 @@ -export * from './useGithubStats'; +export * from './useGitHubStats'; diff --git a/tsconfig.json b/tsconfig.json index 013e6c5..4874062 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "target": "ESNext", "lib": ["DOM", "DOM.Iterable", "ESNext"], "allowJs": false, - "skipLibCheck": false, + "skipLibCheck": true, "esModuleInterop": false, "allowSyntheticDefaultImports": true, "strict": true, @@ -15,5 +15,6 @@ "noEmit": true, "jsx": "react" }, - "include": ["./src"] + "include": ["./src"], + "exclude": ["node_modules"] }