Jake Bailey

Results 1415 comments of Jake Bailey

There is not really a good way, besides using code generation or omitting the type and then using a quick fix to write it out for you instead. `isolatedDeclarations` is...

This PR broke master; there were other packages in the repo depending on these types that were not moved to `proj4` or a pinned older version. See the failures in...

FWIW this condition based approach was what we had recommended previously; prior art is: - https://colinhacks.com/essays/live-types-typescript-monorepo - https://www.npmjs.com/package/tshy - https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/4a8afcde6b0981a5fad2365e50e0ba25ac78e2f8/packages/core/package.json#L32

That being said, I'm not sure why the realpath-ing is not working in this case, unless I'm not understanding the problem. Would need a real repo for an example.

I am not enturely sure where you're basing your experience, but I don't think (2) is related to TS, and (3) is possible with `rewriteRelativeImportExtensions` as of TS 5.7. I'm...

Does tsserver _add_ the space, or does it simply not _remove_ the space?

This is because VS Code itself appears to override our defaults: https://github.com/microsoft/vscode/blob/986516b4bf9f6418ce7e5a551ba7edc02bc3183a/extensions/typescript-language-features/package.json#L1070 (and I suspect the same will be true for things you had to also override when using our...

They aren't all false; in Strada the defaults are: ```ts export function getDefaultFormatCodeSettings(newLineCharacter?: string): FormatCodeSettings { return { indentSize: 4, tabSize: 4, newLineCharacter: newLineCharacter || "\n", convertTabsToSpaces: true, indentStyle: IndentStyle.Smart,...