Anton Gilgur

Results 766 comments of Anton Gilgur

Welp, realized while testing something that `this.load` was only added in Rollup [`2.60.0`](https://github.com/rollup/rollup/blob/master/CHANGELOG.md#2600), _much_ later than `this.resolve`... That's my bad, adding a hotfix now to make this backward-compatible with our...

> What I get now is a mysterious filename string import `/static/media/my-icon.ba681e15.svg` instead of SvgUrl from svg file. Are there any ideas how to fix it? I haven't used these...

Could you help me understand the use-case here? `dtslint`, `tsd`, etc are used for testing _type declaration files_, i.e. `.d.ts` files. Given that TSDX's main use-case is to enable TypeScript-first...

## upstream issue Hi folks, just doing some housekeeping in the issues. I'm going to close this one out as it's gone quite stale (no comments in 9 months) and...

Good find! I wrote TSDX's `tsconfig` parsing in https://github.com/jaredpalmer/tsdx/pull/489 , which borrowed some code from here actually (I was the solo maintainer of and only active contributor [to TSDX](https://github.com/jaredpalmer/tsdx/issues?q=commenter%3Aagilgur5+) for...

CI failed on an integration test suite timeout, but this PR itself shouldn't have increased the time by more than some milliseconds, so think it makes sense to just re-run...

Per the TS docs on [`extends`](https://www.typescriptlang.org/tsconfig#extends) -- which we should treat as a "source of truth" -- the fields that should be shallow merged (replaced, rather) are `files`, `include`, and...

The Babel plugins that are used internally are here: https://github.com/jaredpalmer/tsdx/blob/3a6d42fb767150233c651056aabda9dd91bd048d/src/babelPluginTsdx.ts#L64-L102 It might be that the Rollup plugins that are run prior change some things too (or Rollup itself). Are you...

Custom plugins get added to the end of the default plugins list (unless they are merged with the defaults): https://github.com/jaredpalmer/tsdx/blob/3a6d42fb767150233c651056aabda9dd91bd048d/src/babelPluginTsdx.ts#L25 Yea idk what it's not interacting with well. There seem...