From dca82c9ab5f63c318a3321c0e056a50fb1bde6aa Mon Sep 17 00:00:00 2001 From: csandman Date: Fri, 27 Oct 2023 20:20:08 -0400 Subject: [PATCH] Try switching the module augmentation to a declaration file --- src/index.ts | 2 -- src/{module-augmentation.ts => module-augmentation.d.ts} | 0 2 files changed, 2 deletions(-) rename src/{module-augmentation.ts => module-augmentation.d.ts} (100%) diff --git a/src/index.ts b/src/index.ts index 2027831..475fa7f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,3 @@ -import "./module-augmentation"; - export { default as Select } from "./select/select"; export { default as CreatableSelect } from "./select/creatable-select"; export { default as AsyncSelect } from "./select/async-select"; diff --git a/src/module-augmentation.ts b/src/module-augmentation.d.ts similarity index 100% rename from src/module-augmentation.ts rename to src/module-augmentation.d.ts