From b2944f536bf89efc68290ae2ba6cca5ff646f27b Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Sun, 6 Aug 2023 22:48:30 -0700 Subject: [PATCH] Use build config --- package.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0a62564..7d4e65a 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "type": "module", "exports": { ".": { - "import": "./dist/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "import": "./dist/index.js" } }, "engines": { @@ -69,5 +69,10 @@ "path": "dist/index.js", "limit": "1.1 KB" } - ] + ], + "ts-scripts": { + "project": [ + "tsconfig.build.json" + ] + } }