Jake Bailey
Jake Bailey
- [ ] Note to self: this will have to be added to https://github.com/microsoft/TypeScript/wiki/API-Breaking-Changes.
# Bug Report ### 🔎 Search Terms empty optional property binding pattern destructuring element ### 🕗 Version & Regression Information - This is the behavior in every version I tried....
I have a piece of code that is formatted to look like a table: https://github.com/microsoft/TypeScript/blob/7910c509c4545517489d6264571bb6c05248fb4a/src/testRunner/unittests/tsserver/projectReferences.ts#L1573 I can `// dprint-ignore` the entire function (the `describe`), but that disables formatting for code...
In TS we have enums with comments aligned like so: ```ts export const enum TypeFacts { None = 0, TypeofEQString = 1
I'm using this thread to dump my brain and to note problems as I solve them (or to discuss). Issues of note: - #49037 - #27891 - #46744 (Eli's old...
Fixes #51099 However, I'm not totally sure what the semantics should be for this; what values are actually produced for `import * as x from "..."`? It _seems_ like it...
This is it; the PR that converts the TypeScript repo from namespaces to modules. ## TL;DR: The TypeScript compiler is now implemented internally with modules, not namespaces. The compiler is...
In #51387, I modified our CodeQL config to exclude certain problematic rules; see https://github.com/github/codeql/issues/10937. Once the fixes are released and available in https://github.com/github/codeql-action, we should remove the exclusions.
Our libraries are all UMD-ish, because they can be used in Node or in the browser. I didn't change this for the module transform. However, most of our executables are...