From 63eb78c619b1e684c2abedff25bfb5421d1ae01b Mon Sep 17 00:00:00 2001 From: Mark Dalgleish Date: Fri, 18 Oct 2024 15:45:58 +1100 Subject: [PATCH] Fix tsconfig outdir --- packages/remix-route-config/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/remix-route-config/tsconfig.json b/packages/remix-route-config/tsconfig.json index 2e85dccebf7..20e4f5cb27e 100644 --- a/packages/remix-route-config/tsconfig.json +++ b/packages/remix-route-config/tsconfig.json @@ -14,6 +14,6 @@ "declaration": true, "emitDeclarationOnly": true, "rootDir": ".", - "outDir": "./dist" + "outDir": "../../build/node_modules/@remix-run/route-config/dist" } }