From 504dd7a2624b4d774f592215de942d5d890680fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Garapich?= Date: Tue, 24 May 2022 18:01:08 +0200 Subject: [PATCH] fix(build): fix entry points (#37) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 42827ec..e13ff6d 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ "bugs": { "url": "https://github.com/tf2pickup-org/simple-mumble-bot/issues" }, - "main": "dist/src/index.js", - "types": "dist/src/index.d.ts", + "main": "dist/index.js", + "types": "dist/index.d.ts", "scripts": { "lint": "eslint \"src/**/*.ts\"", "build": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",