From f492d26379fb47338bc03d08f0d131fbc7863064 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Wed, 26 Oct 2022 13:49:28 +0200 Subject: Make jsFactory shorter -> bundle size -10% --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 5d87ced..5269748 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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/**/*"] -- cgit