Currently, I am utilizing inferno js alongside TypeScript (through ts-loader and transformInferno in webpack3) and for the most part, everything is functioning smoothly. However, a peculiar message appears in the browser console when running within the webpack-dev-server stating
You are running production build of Inferno in development mode. Use dev:module entry point.
.
Even though I noticed that inferno includes a dev:module
entry in the package.json file, I am unsure about how to actually utilize this entry point instead of the default module
. Can anyone offer some guidance on this?