From 930cbf5c8de0a6b607a92d12881074dfc077e6fc Mon Sep 17 00:00:00 2001 From: Andrew Holloway Date: Thu, 26 Oct 2023 10:48:11 -0500 Subject: [PATCH] chore: update omlet config (#1792) - add TS and TSX files to include - make sure exports is defined to mark the package entry point - confirm package analytics match expectations --- .omletrc.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.omletrc.json b/.omletrc.json index ce68b0c52..b2abc296d 100644 --- a/.omletrc.json +++ b/.omletrc.json @@ -1,5 +1,8 @@ { "ignore": ["lib/**", ".storybook/**"], - "include": ["src/components/**/*.tsx"], - "tsconfigPath": "tsconfig.json" + "include": ["src/components/**/*.{tsx,ts}", "src/index.ts"], + "tsconfigPath": "tsconfig.json", + "exports": { + ".": "./src/index.ts" + } }