diff --git a/package.json b/package.json index 2f4de8d..d161bc0 100644 --- a/package.json +++ b/package.json @@ -10,20 +10,6 @@ "dist/**/*", "src/**/*" ], - "exports": { - ".": { - "types": "./dist/index.d.ts", - "default": "./dist/index.js" - }, - "./redis": { - "types": "./dist/cache-tags-redis.d.ts", - "default": "./dist/cache-tags-redis.js" - }, - "./postgres": { - "types": "./dist/cache-tags.d.ts", - "default": "./dist/cache-tags.js" - } - }, "scripts": { "build": "tsc", "lint": "eslint src", diff --git a/src/index.ts b/src/index.ts index 4bf14b0..3861992 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,4 @@ export * from './cache-tags'; -export * as postgres from './cache-tags'; -export * as redis from './cache-tags-redis'; export * from './classnames'; export * from './links'; export * from './types';