Jason Walton
Jason Walton
Removing `"type": "module"` from your package.json will fix this. I doubt this will be fixed any time soon, because as [@babel/register](https://babeljs.io/docs/en/babel-register/) notes: > Note: @babel/register does not support compiling native...
> this is not a fix It is sadly not. But until node provides an API to intercept loading modules (which I suspect is unlikely soon, if ever) there's no...
Note that mocha v6 now supports, in addition to the legacy "/test/mocha.opts" file, a "/.mocharc.js", a "/.mocharc.json", a "/.mocharc.yaml", and allows specifying settings in package.json. Details are [here](https://mochajs.org/#configuring-mocha-nodejs). (The .js...
No, I don't think it supports any of these. :/
If you're interested in some help, I'd be happy to submit a PR for reading mocha config after your major refactor and the unrelated major refactor I'm working on right...
I switched to: https://github.com/hbenl/vscode-mocha-test-adapter Install with: ```sh $ code --install-extension hbenl.vscode-mocha-test-adapter ``` Then for your typescript projects, in PROJECTROOT/.vscode/settings.json: ```json { "mochaExplorer.files": "**/*.spec.ts", "mochaExplorer.require": "ts-node/register/transpile-only", } ``` (Replace the "**/*.spect.ts"...
I ran into the same problem and was about to throw my hands up in frustration and jump to Winston, but I poked around with a debugger and figured this...
It doesn't seem like updating `size` works even before the gutter has been moved: ``` function Demo() { const [panelSizes, setPanelSizes] = useState([25, 75]); return ( setPanelSizes(sizes)} > Panel 1{panelSizes[0]}...
Oh, also, this same function crushes the first 16 colors to black and bright black: ``` for (let i = 0; i < 15; i++) { console.log(colorConvert.ansi256.ansi16(i)); } ``` This...
Going even deeper (and possibly more subjective, but maybe this is related)... here's the full color table generated by color-convert: Aside from the issues already discussed above, I notice a...