From 6b03fb455c61b60365136f632030764708be9316 Mon Sep 17 00:00:00 2001 From: Rico Kahler Date: Mon, 16 Nov 2020 04:45:08 -0500 Subject: [PATCH] fix: types (#5) * fix: types * remove comma --- package-lock.json | 2 +- package.json | 2 +- tsconfig.json | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8efc09bf..ae453972 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "next-data-hooks", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 33ef524e..c1189654 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "next-data-hooks", - "version": "0.1.0", + "version": "0.1.1", "description": "Co-located, static data hooks in next.js", "private": true, "scripts": { diff --git a/tsconfig.json b/tsconfig.json index 50da9c18..004fa301 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,5 +10,6 @@ "emitDeclarationOnly": true, "forceConsistentCasingInFileNames": true }, - "exclude": ["**/*.test.tsx", "dist/**/*", "examples/**/*", "test-app/**/*"] + "exclude": ["**/*.test.tsx"], + "include": ["./src/**/*.tsx", "./src/**/*.ts"] }