Marcelo Saviski
Marcelo Saviski
"Pretty" annoying Did a regex replace on all my files to add a `//` after each class declaration replace `class(.|\n)*?\{\n` with `$0 //\n`
It would be useful to use some type testing like **inherits**, something like _is readonly_. ```typescript interface TypeWithReadOnlyProperties { a: any; readonly b: any; } type TypeWithOnlyMutableProperties = { [P...
I have tried using `mochaExplorer.nodeArgv` with `"--loader ts-node/esm"` but then `configReader.js/readConfig()` fails when it tries to creates a child process to execute `loadConfig.js` it would be nice if we could...
> @saviski did you set `mochaExplorer.nodeArgv` to `["--loader ts-node/esm"]` or `["--loader", "ts-node/esm"]`? The latter should be correct. `["--loader ts-node/esm"]` I have debugged the extension to make some tests locally, setting...