andyrooger
andyrooger
I've been experimenting - seems to be the problem is that on Visual Studio the cwd is set to C:\WINDOWS\system32 when this gets run. [CascadingConfigArrayFactory](https://github.com/Quramy/typescript-eslint-language-service/blob/8056613d16c2b1f873e532525b947b84ccb60f0e/src/eslint-config-provider.ts#L39) and [Linter](https://github.com/Quramy/typescript-eslint-language-service/blob/8056613d16c2b1f873e532525b947b84ccb60f0e/src/eslint-adapter.ts#L95) both have options...
For now I'm working around this with a plugin that looks like ```js function init(modules) { process.chdir(''); function create(info) { return info.languageService; } return { create }; } module.exports =...
I guess this is just waiting on the [other issue](https://github.com/commitizen/cz-cli/issues/756) you reported, @fendy-g ?
If you need this now, it's possible to do with jsdom. Load up the index.html in there, and mock `window.URL.createObjectURL` in the DOM and you'll get a blob back with...
Still quite useful but in the meantime I've realised that I can work around this in NSwag by turning on the `"generateEnumMappingDescription": true,` option in nswag.json to generate the mappings...
If it is the same problem you can try https://www.npmjs.com/package/vs-compat-ts-plugin - it's how I've been solving the initial problem for a few years. Contains the code above with a few...
@artola Is it possible to include a fix for the ignore path check in here too in `checkFileToBeIgnored`? I made a fork for the same changes without checking first -...
I'm having the same issue. Looks like \x2F works as a workaround instead, just remember to escape it for the string it's in.