From b39175001375021bde5a279be65dc1364a2a005c Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sun, 7 Jun 2026 12:04:54 +0200 Subject: [PATCH] fix(build): map pixi.js in tsconfig paths for client pixiPatch.ts vite.config already aliases pixi.js to the renderer's copy, but tsconfig had no matching path, so tsgo could not resolve the client-side import in src/pixiPatch.ts (merge-introduced). Mirror the vite alias. Fixes TS2307. --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 04ef8b6..a915a7d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,6 +25,9 @@ ], "@/*": [ "./src/*" + ], + "pixi.js": [ + "../Nitro_Render_V3/node_modules/pixi.js" ] } },