From 08ec691762a471b8f7035c21629eafa47e038934 Mon Sep 17 00:00:00 2001 From: zumbiepig <121742281+zumbiepig@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:48:45 -0700 Subject: [PATCH] . --- package.json | 1 - tsconfig.json | 7 ++++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dc24a81..73f90d6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "private": true, "name": "minexlauncher", - "module": "index.ts", "type": "module", "scripts": { "start": "NODE_ENV=production bun run ./index.ts", diff --git a/tsconfig.json b/tsconfig.json index 2895e1d..7e286f3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,9 @@ { "extends": ["@tsconfig/bun", "@tsconfig/strictest"], - "exclude": ["node_modules", "public"] + "exclude": ["node_modules", "public"], + "compilerOptions": { + "outDir": "dist", + "noEmit": false, + "allowImportingTsExtensions": false + } }