Javascript – Compiling react app using webpack not compiling files as expected
I would compile using webpack ts files. In webpack.config.js: module.exports = async (env, options) => { const dev = options.mode === "development"; const config = { devtool: "source-map", entry: { polyfill: ["core-js/stable", "regenerator-runtime/runtime"], vendor: ["react", "react-dom", "core-js", "@fluentui/react"], taskpane: ["react-hot-loader/patch",…