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.
This commit is contained in:
simoleo89
2026-06-07 12:04:54 +02:00
parent f593205d5f
commit ecea05d7ae
+3
View File
@@ -25,6 +25,9 @@
],
"@/*": [
"./src/*"
],
"pixi.js": [
"../Nitro_Render_V3/node_modules/pixi.js"
]
}
},