From 8e13e7fffe3d12a722dd71c689acf422d0fa7bcf Mon Sep 17 00:00:00 2001 From: ilies-bel <56508691+ilies-bel@users.noreply.github.com> Date: Wed, 14 Jun 2023 18:21:04 +0200 Subject: [PATCH] [MM-52821] Migrate components/app.jsx to Typescript (#23605) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Iliès BELDJILALI Co-authored-by: Mattermost Build --- webapp/channels/src/components/{app.jsx => app.tsx} | 0 webapp/channels/webpack.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename webapp/channels/src/components/{app.jsx => app.tsx} (100%) diff --git a/webapp/channels/src/components/app.jsx b/webapp/channels/src/components/app.tsx similarity index 100% rename from webapp/channels/src/components/app.jsx rename to webapp/channels/src/components/app.tsx diff --git a/webapp/channels/webpack.config.js b/webapp/channels/webpack.config.js index 00286aa6bd..3608f90315 100644 --- a/webapp/channels/webpack.config.js +++ b/webapp/channels/webpack.config.js @@ -376,7 +376,7 @@ async function initializeModuleFederation() { // Desktop specific code for remote module loading moduleFederationPluginOptions.exposes = { - './app': 'components/app.jsx', + './app': 'components/app', './store': 'stores/redux_store.jsx', './styles': './src/sass/styles.scss', './registry': 'module_registry',