Jake Bailey

Results 1480 comments of Jake Bailey

I'm also wanting this, though I'm not sure what you'd do about `vsce` other than to download it from npm on the fly? I it has native components and lots...

Not surprising if you've seen #49863. Notably, this new PR adds a strict mode setting. That's what made DT clean, as DT does not set `strict=true`, but rather enables specific...

Are you using `baseUrl` to make this work? `baseUrl` is not supported; you'll want to remove it and write that path mapping target relative to the tsconfig that it's in...

Is this still happening for people as of the most recent nightly? The parens thing has been fixed, as have many other module resolution errors.

I'll close this, then. Please open new issues for anything else you're finding.

Bumping to v1 would not help that. v0.22 to v0.23 contained breaking changes, which is how it works for 0.x bumps. Moving to v1 would just mean that the same...

@casewalker You're mistaken about how semver works with `0.X.Y` versions; `^0.14.0` will match `0.14.0`, `0.14.1`, etc, but will not match `0.15.0`. Having a zero as major version means the minor...

I don't think the types here are correct; here is the package.json for `rbuch`: ``` "type": "module", "exports": "./index.js", "main": "rbush.js", "module": "index.js", "browser": "rbush.min.js", "jsdelivr": "rbush.min.js", "unpkg": "rbush.min.js", ```...