Dibo
Dibo
``` > teaser --dir ./mydir --out-dir=./myoutputdir ``` this code will enable teaser for all .js files inside the dir specified by --dir option, and output the results into --out-dir, which...
the rule `explicit-length-check` should be used in comparisons only. and not be used in other situations such as assigning a variable like this: ``` let x = options.length || 500...
I want to allow this abbr `elementRef: ElementRef` as it a well known term in Angular ``` replacements:[ // those don't work elementRef: false, ElementRef: false, Ref: false, // only...
module-alias is working fine with my commonjs project, once it migrated to use esm it stopped working minimal repos: [commonjs version](https://stackblitz.com/edit/node-42hfdu?file=package.json) [esm version](https://stackblitz.com/edit/node-z4b52r?file=package.json) run `npm run start:paths` in both projects
as mentioned in docs the commit will include everything in assets even if it is included in .gitignore. you can add an option to ignore a file's contents like that...
I want to perform an http request to get a field's options, but only when other fields have values, other fields may get theirs options by HTTP requests example: ```...
I need to register paths to be used with `ts-node` so my tsconfig.json looks like: ``` { ts-node:{ "require": ["tsconfig-paths/register"] } } ``` but this causes an error when running...
I have an issue when I try to run webpack with `webpack.config.ts` written in typescript and `ts-node` has `"require": ["tsconfig-paths/register"]` // tsconfig.json ``` { compilerOptions:{ paths: { /* ----------------- */...
when I run `shx rm -f -r dir` it fails with the error `path is a directory` but when I run the exactly same command but putting arguments together it...
it seems that the option `allowModules` accepts the typical module names only. it should accept wildcards and regex - [ ] allow wildcards and regex - [ ] add .ts...