Gustavo
Gustavo
@aidenybai I'd imagine something like this applied to https://github.com/aidenybai/hacky/blob/105fa12777990b7680c4964beea142392a772bc9/src/component.ts and then likely other changes to add `await` to `data.diff()` where it's called: ```diff - data.diff = () => { +...
@rmcarias We're overriding `include` to an empty array because otherwise all files in `include` would be processed (see https://github.com/gustavopch/tsc-files/issues/9 and https://github.com/gustavopch/tsc-files/issues/5). Do you have any idea on how to fix...
@IPWright83 The [empty `include`](https://github.com/gustavopch/tsc-files/pull/18) caused this issue. Do you have an idea about how to fix this without reverting that PR?
@IPWright83 Before, global declarations were taken into account because they were included by `include`. Now they're not. So when TypeScript reads `window.test()`, it's doesn't know that there's another file that...
@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 https://github.com/gustavopch/tsc-files/pull/22 and check if it fits...
@deanolium It makes sense. On one hand, we can't simply include everything as it defeats the purpose of the tool (that's what happened before v1.1.3); on the other hand, we...
@benwainwrightcinch Now I'm wondering if an `--include` option should be added so you'd run `tsc-files some-file.ts --include "**/*.d.ts"`. Perhaps even have `**/*.d.ts` as the default value? I'd like to know...
@dr-skot Try to run `tsc-files file-you-actually-want-to-check.ts globals.d.ts` where `globals.d.ts` is an extra file with the sole purpose of loading Jest types (I believe adding `import 'jest'` into it would suffice).
Thanks for the PR, @jmmendivil, but I think it's ambiguous to let specify files both through positional (`tsc-files foo.ts`) and named arguments (`tsc-files -i foo.ts`). I think a better API...
@resolritter Thanks for the PR. I want to make some code-style changes. Can you enable edits? https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork