Make jsFactory shorter -> bundle size -10%
This commit is contained in:
parent
56b00f715a
commit
f492d26379
|
@ -115,7 +115,12 @@ export const Clipboard = mapMangledModuleLazy('document.queryCommandEnabled("cop
|
|||
SUPPORTS_COPY: x => typeof x === "boolean",
|
||||
});
|
||||
|
||||
waitFor("useState", m => React = m);
|
||||
waitFor("useState", m => {
|
||||
window._Ve$ = m.createElement;
|
||||
window._VF$ = m.Fragment;
|
||||
React = m;
|
||||
});
|
||||
|
||||
waitFor(["dispatch", "subscribe"], m => {
|
||||
FluxDispatcher = m;
|
||||
const cb = () => {
|
||||
|
|
|
@ -15,8 +15,9 @@
|
|||
"noImplicitAny": false,
|
||||
"target": "ESNEXT",
|
||||
// https://esbuild.github.io/api/#jsx-factory
|
||||
"jsxFactory": "Vencord.Webpack.Common.React.createElement",
|
||||
"jsxFragmentFactory": "Vencord.Webpack.Common.React.Fragment",
|
||||
// these short window aliases make the bundle ~10% smaller
|
||||
"jsxFactory": "_Ve$",
|
||||
"jsxFragmentFactory": "_VF$",
|
||||
"jsx": "react"
|
||||
},
|
||||
"include": ["src/**/*"]
|
||||
|
|
Loading…
Reference in a new issue