We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Fix: typo in FAQ.md file (#340)
Add `moduleResolution` `bundler` to FAQ answer (#337)
fixed typo in "Pre-Declined Feature Requests" title (#333)
Recover missing FAQ section on functions/signatures with fewer parameters being assignable to those with more parameters.
Add isFinite
Updated FAQ (markdown)
Fixed 2 broken links in FAQ.md Line 1289 (How do I control file ordering in combined output?) old: https://www.typescriptlang.org/docs/handbook/tsconfig.json.html new: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html Line 1237 (How do I write unit tests with typescript?) old: https://basarat.gitbooks.io/typescript/docs/testing/jest.html new: https://basarat.gitbook.io/typescript/intro-1/jest
FAQ: Fix punctuation and formatting
Merge branch 'master' of https://github.com/Microsoft/TypeScript.wiki
Fix incorrect code sample in "Things that don't work section"
Add more "Common Bugs That Aren't Bugs"
Merge branch 'master' into patch-1
Proofreading
Remove outdated & incorrect section on string indexers As of [version 2.2](https://devblogs.microsoft.com/typescript/announcing-typescript-2-2/), it is no longer accurate.
Merge branch 'master' into fix/typo
Merge pull request #199 from brainlessdeveloper/fix-faq-typos Fix typos and spelling in the TypeScript FAQ
Update FAQ.md
Fix typos and spelling in the TypeScript FAQ
Fix typo in FAQ
Use prettier for code examples that have a too long width Max-width is set to 84, since that is what github pages can handle best.
Fix typo
Add bugs section
Correct signature of isReallyInstanceOf I pasted the isReallyInstanceOf<T> function into my editor and TypeScript (version 2.6.1) immediately caught an error in the function signature. `ctor: { new(...args: any) => T }` -> `ctor: { new(...args: any[]): T }`
Fix code block