From 9433e1156e7e5750fe1ecb51becf3211b9e69d21 Mon Sep 17 00:00:00 2001 From: Jonas-Merlin Schumacher Date: Thu, 23 Mar 2023 11:34:30 +0100 Subject: [PATCH] fix: add tsconfig.json to fix TS error --- src/index.ts | 1 + tsconfig.json | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 tsconfig.json diff --git a/src/index.ts b/src/index.ts index 4fbb7eb..82dbcfb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,3 @@ export { default as SEO } from "./SEO.astro"; + export * from "./SEO.astro"; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ae7ad59 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "astro/tsconfigs/base" + } \ No newline at end of file