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 + } }