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 288b59f168
commit b391750013
+3
View File
@@ -25,6 +25,9 @@
], ],
"@/*": [ "@/*": [
"./src/*" "./src/*"
],
"pixi.js": [
"../Nitro_Render_V3/node_modules/pixi.js"
] ]
} }
}, },