From d5071ea738703c6850d6d2dde3e33c2c7412340e Mon Sep 17 00:00:00 2001 From: theurgi <58859663+theurgi@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:52:52 -0400 Subject: [PATCH] fix(node-typescript): remove tsconfig compilerOptions.path The compilerOptions.path setting caused tsup to throw "No loader is configured for '.node' files" and fail to build. See: https://github.com/egoist/tsup/issues/303 --- packages/node-typescript/tsconfig.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/node-typescript/tsconfig.json b/packages/node-typescript/tsconfig.json index 2f7c4ed..be6ef16 100644 --- a/packages/node-typescript/tsconfig.json +++ b/packages/node-typescript/tsconfig.json @@ -9,9 +9,6 @@ "moduleResolution": "node16", "noEmit": true, "outDir": "./dist", - "paths": { - "*": ["node_modules/*", "src/types/*"] - }, "resolveJsonModule": true, "skipLibCheck": true, "strict": true,