Fixes .jsx missing from TguiTarget in build.js (#80630)

## About The Pull Request
.jsx files were recently switched to by TGstation, but because they were
not in TGUITarget, when you make changes to a .jsx file, it doesn't
recompile TGUI! Yippee!

I SPENT HALF AN HOUR RECOMPILING MY TGUI AND HAVING IT JUST NOT SHOW UP.
IT'S THE WORST. PLEASE FREE ME.
This PR fixes that

## Why It's Good For The Game
This has no game impact, it just fixes something that infuriates me. It
will save coders from the pain I had to go through before I realized
what was wrong.

## Changelog

🆑 ReturnToZender
fix: JSX files, when edited, cause TGUI to recompile on build
/🆑
This commit is contained in:
ReturnToZender
2023-12-28 18:04:59 -08:00
committed by GitHub
parent 9349a59ce4
commit 43073f6b54
+1 -1
View File
@@ -327,7 +327,7 @@ export const TguiTarget = new Juke.Target({
'tgui/.yarn/install-target',
'tgui/webpack.config.js',
'tgui/**/package.json',
'tgui/packages/**/*.+(js|cjs|ts|tsx|scss)',
'tgui/packages/**/*.+(js|cjs|ts|tsx|jsx|scss)',
],
outputs: [
'tgui/public/tgui.bundle.css',