From 431ff74df8102741c27db31b087e105930d851e8 Mon Sep 17 00:00:00 2001 From: Cindy Arbelaez V <117948075+cindyvciandt@users.noreply.github.com> Date: Sat, 13 Jan 2024 07:57:17 -0500 Subject: [PATCH] export type in package.json should-forward-prop path (#575) * export type in package.json should-forward-prop path * export types in prefixer and global subpaths --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 132f3933..19d0ca4e 100644 --- a/package.json +++ b/package.json @@ -44,17 +44,20 @@ "./global": { "import": "./global/dist/goober-global.modern.js", "require": "./global/dist/goober-global.cjs", - "umd": "./global/dist/goober-global.umd.js" + "umd": "./global/dist/goober-global.umd.js", + "types": "./global/global.d.ts" }, "./prefixer": { "import": "./prefixer/dist/goober-autoprefixer.modern.js", "require": "./prefixer/dist/goober-autoprefixer.cjs", - "umd": "./prefixer/dist/goober-autoprefixer.umd.js" + "umd": "./prefixer/dist/goober-autoprefixer.umd.js", + "types": "./prefixer/autoprefixer.d.ts" }, "./should-forward-prop": { "import": "./should-forward-prop/dist/goober-should-forward-prop.modern.js", "require": "./should-forward-prop/dist/goober-should-forward-prop.cjs", - "umd": "./should-forward-prop/dist/goober-should-forward-prop.umd.js" + "umd": "./should-forward-prop/dist/goober-should-forward-prop.umd.js", + "types": "./should-forward-prop/should-forward-prop.d.ts" } }, "scripts": {