Results 96 comments of Sergey Vohmyanin

@VisonM I think that they need to use ``` const {parse}=require("node:url"); ``` instead of global version of URL, because of Node.JS global URL is strict whatwg version, but Chromium is...

https://github.com/npm/cli/pull/5487#issuecomment-1247371710 @lazybobcat Just replace colon with slash as workaround ``` "devDependencies": { ... "etools": "git+ssh://git@git.***/frontend/dev-build-tools.git", ... } ```

The same ``` error: 'eslint-comments/no-unused-disable' rule is disabled but never reported (eslint-commen ts/no-unused-disable) at src\types\services\type-registry.loader.ts:4:20: > 4 | /* eslint-disable eslint-comments/no-unused-disable -- автосгенерированный код */ ```

based on plugin ttf2woff.js ``` var ttf2woff2=require("ttf2woff2"); var FontMinTtf2Woff2 = function(opts) { opts = _.extend({clone: true}, opts); function compileTtf(buffer, options, cb) { var output; var ttf2woffOpts = {}; if (options.deflate)...

I preferred to write own implementation of svgs2ttf using fontforge basic scripting to produce svg font and ttf2\* modules because svg font rendering issues does not fixed in such projects...

@ChrTall I think it work normally in current version. I use lazy loading with manual create ngModuleRef.

@msrumon try importing via ``` const interactjs = require('interactjs'); ``` Seem this library missing some ESM compatibility As for me library compiled without warnings and disabled skipLibCheck

I installed madge globally, manually updated dependencies `dependency-tree` and `detective-typescript`, and seems it solves my task with tsconfig aliases

> > I installed madge globally, manually updated dependencies `dependency-tree` and `detective-typescript`, and seems it solves my task with tsconfig aliases > > What are the respective versions did you...