Results 25 comments of Rand Scullard

The solution from @romgrk-comparative and @benvium is working great for me now, but I had a lot of trouble getting started because of a quirk in the Windows `mklink` command....

I'm using another method to solve the duplicate package problem. Replace @TeemuKoivisto's webpackConfig.resolve.alias line with: webpackConfig.resolve.modules = webpackConfig.resolve.modules.filter(mod => mod !== "node_modules") Explanation: CRA configures this `modules` array to include...

I just had to add another thing to my overrideWebpackConfig for my TypeScript project: const tscheckerPlugin = getPlugin(webpackConfig, pluginByName("ForkTsCheckerWebpackPlugin")) tscheckerPlugin.match.options.reportFiles.splice(0) **Explanation:** `ForkTsCheckerWebpackPlugin` does the TypeScript type checking in the webpack...

> All this to try to get symlinks to work the way the OS designers intended them to work? FWIW, I used the techniques described in this issue to get...

@hasan-aa I am not using CRA v5, I am still on 4.0.3. I am waiting to upgrade until craco fully supports v5. (https://github.com/gsoft-inc/craco/issues/378) I have taken a look at the...

I think this is an excellent suggestion. In my scenario, I want to have each virtual user get a JSON list of the document IDs assigned to them, then loop...

In my TypeScript project built with create-react-app, this did _not_ work: import "swipejs"; It compiled OK but failed at runtime when my code called `new Swipe`. It appears that Webpack...

@JoseCMRocha: The change made by @lyfeyaj to types/swipe.d.ts on March 30th did not exactly revert my changes from PR #130. Instead, my change to use "export default" syntax was removed...

@raf18seb My requirement is to print an entire report page which includes several Highcharts charts. I don't think I can meet that requirement using the Highcharts methods. Please let me...

@raf18seb That's great news, thanks for taking another look! Hopefully it's a quick and easy fix...