Deanolium

Results 6 comments of Deanolium

Is it possible to use a glob in includes to include all `*.d.ts` files, rather than having it be entirely blank? This is a breaking issue for me so I...

Maybe a possibility is to have a command line argument to put in files/directories you want to include (so a custom types or declaration directory, or a specific .d.ts file)...

Using a glob could work, reading the Typescript docs. So maybe doing: ``` includes: ['**/*.d.ts'] ``` or ``` includes: ['src/**/*.d.ts'] ``` instead of the empty array could be a way...

> @deanolium I don't think a `tscFilesIncludes` field would be needed as you can already do the same with `typeRoots`. Please read the comments in #22 and check if it...

The same happens with allowed and nullable. You can add None at least in the allowed array, but this should be implied (ie, you need both None in the allowed...

I'm happy to work on this as a PR over the weekend since it's relatively straight forward (barring potentially the recursion), doing it in a way which maintains the current...