From c5c12c06edfe283eca116ab075e2fb71bea6b8dc Mon Sep 17 00:00:00 2001 From: Paperclip Bot Date: Tue, 2 Jun 2026 08:48:32 +0000 Subject: [PATCH] fix(build): rootDir=src so tsc emits dist/manifest.js (not dist/src) --- tsconfig.build.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 47028dc..e8042d2 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,7 +1,8 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "outDir": "dist" + "outDir": "dist", + "rootDir": "src" }, "include": [ "src"