sort by:
Revision Author Date Message Commit Date
15445e1 Add user preference to the protocol. 18 October 2019, 00:41:49 UTC
73e9715 Added option 'includeAutomaticOptionalChainCompletions' to disable '?.' completions. 18 October 2019, 00:41:49 UTC
7275e9c Delete redundant test 18 October 2019, 00:22:47 UTC
d2fab65 Added test. 18 October 2019, 00:04:45 UTC
526e413 Dropping assert for 3.7 17 October 2019, 23:51:30 UTC
8927aaa Rewrite tests 17 October 2019, 23:50:22 UTC
9dd8391 Add additional properties to switch declaration 17 October 2019, 23:36:54 UTC
d18130d Consolidate checks in emitFilesAndReportErrors 17 October 2019, 23:36:54 UTC
caf0041 Add listFilesOnly command-line option Msbuild currently uses a combination of `--listFiles` and `--noEmit` to obtain a list of files to be consumed by tsc. However, these two flags don't suppress type checking, the results of which msbuild will never consume. This new switch gives msbuild a faster way to obtain the file list. Note: like `--noEmit`, doesn't make sense in build mode. 17 October 2019, 23:36:50 UTC
a8dc7af LEGO: Merge pull request 34549 LEGO: Merge pull request 34549 17 October 2019, 22:11:05 UTC
80cb807 LEGO: check in for master to temporary branch. 17 October 2019, 22:10:36 UTC
580e3f5 Merge pull request #34527 from microsoft/rootDir Use getNormalizedAbsolutePath to combine basePath and config value for file names 17 October 2019, 21:19:49 UTC
454a3a0 Fix auto-imports from auto type acquisition definitions (#33766) * Fix auto-imports from ATA typings * Compare canonical filenames in isImportablePath 17 October 2019, 20:59:09 UTC
b3df23c Accept module resolution trace baseline where baseUrl is specified as "../" in tsconfig 17 October 2019, 20:15:26 UTC
fde10a2 Merge branch 'master' into rootDir 17 October 2019, 19:54:26 UTC
6d969f7 Merge pull request #34525 from microsoft/testChanges Converted more tsc and tsbuild tests to baseline 17 October 2019, 19:50:30 UTC
575339c Merge branch 'master' into testChanges 17 October 2019, 19:26:16 UTC
4055689 Merge pull request #34487 from microsoft/skipTsBuildinfoEmit Do not write build info if there are no files to emit 17 October 2019, 19:22:25 UTC
4530d3e Fixed scenario names 17 October 2019, 19:04:24 UTC
6caa928 Fix scenario name 17 October 2019, 19:00:41 UTC
afee423 Feedback on formatting 17 October 2019, 18:54:26 UTC
5b5f88e Add test with incremental program with only d.ts files 17 October 2019, 18:52:22 UTC
f32c2ea Some changes to incremental tests 17 October 2019, 18:46:54 UTC
f5dbcb7 Resolve more jsdoc value references as types (#34515) * Resolve more jsdoc value references as types * add test 17 October 2019, 18:21:34 UTC
262ec61 Make ImageData(Uint8ClampedArray)'s 3rd param optional (#34519) It can be inferred from the first two. Fixes #33266 Baseline update from microsoft/TSJS-lib-generator#790 17 October 2019, 18:14:07 UTC
f41b7b5 Fix quick info for methods whose contextual type is a mapped type property (#33930) 17 October 2019, 17:54:01 UTC
a95a25b Fix completions of optional properties in generic positions (#33937) * fixes #30507 * Add test case for generic Partial type * Fixes #28470 * Simplify contextFlags binary check * Add string literal completion test * Fix ContextFlags typings * Speed up inference expression for completion * Fix baseline merge * Make contextFlags internal * Reapply readonly array changes * accept baselines * Fix generic completion tests * Re-merge ContextFlags * Don’t change type during inference * Fix typos and superfluous undefined arguments * Add test for completions in unconstrained generic object literal 17 October 2019, 17:45:40 UTC
45d0ef9 factory: parenthesize for-of expression when necessary (#34229) Fixes: #33856 17 October 2019, 17:17:33 UTC
5d20c57 Merge pull request #34524 from orta/fix_32675 Does not add a duplicate completion when offering an export which was re-declared as a global 17 October 2019, 17:08:32 UTC
85010fa Make sure that global module re-exports are short-cutted to be added to completions 17 October 2019, 16:33:01 UTC
43cf899 Merge pull request #34530 from connorjclark/patch-1 Update bug template to link to nightly playground 17 October 2019, 14:48:18 UTC
d6663bf Update bug template to link to nightly playground 17 October 2019, 02:44:48 UTC
f3a234c Dedupe inherited jsdoc comments (#34522) JSDoc on own properties was already deduped, but inherited jsdoc was incorrectly not deduped. Fixes #32708 16 October 2019, 22:56:01 UTC
1531c9e Fix lint rules 16 October 2019, 22:42:53 UTC
9fa7d8b Use getNormalizedAbsolutePath to combine basePath and config value for file names Fixes #34502 by being consistent in path normalization 16 October 2019, 22:38:29 UTC
d020ac6 LEGO: Merge pull request 34526 LEGO: Merge pull request 34526 16 October 2019, 22:10:56 UTC
0709bde LEGO: check in for master to temporary branch. 16 October 2019, 22:10:29 UTC
a4044ca Add test for #34502 16 October 2019, 21:32:18 UTC
66ea16a Sample to baseline output 16 October 2019, 21:05:07 UTC
c40ddb1 Does not add a duplicate completion when offering an export which was re-declared as a global - fixes #32675 16 October 2019, 21:02:35 UTC
e54d5ca outFile to baseline 16 October 2019, 19:51:41 UTC
5390c64 rootDir tests are baselined 16 October 2019, 19:19:26 UTC
928a4e7 resolveJsonModule as baseline test 16 October 2019, 19:12:12 UTC
4b13406 transitiveReferences as baseline 16 October 2019, 18:52:46 UTC
25db0b0 Merge baselining and tsc logic into one 16 October 2019, 18:39:40 UTC
e3cc4f4 missingExtendedConfig to baseline test 16 October 2019, 18:39:04 UTC
7c0cc4a empty files to baseline test 16 October 2019, 18:37:43 UTC
c2eabdd Write ExitStatus as enumng-rootDir-is-in-the-tsconfig.js 16 October 2019, 18:37:35 UTC
178417f factory: correctly parenthesize conditional head (#34227) Fixes: #34109 16 October 2019, 17:41:52 UTC
3da51df LEGO: Merge pull request 34514 LEGO: Merge pull request 34514 16 October 2019, 16:10:40 UTC
348735a Demo as baseline test instead 16 October 2019, 16:10:33 UTC
c8e6f1c Convert some more tests into baselines 16 October 2019, 16:10:30 UTC
333436b Some changes to incremental tests 16 October 2019, 16:10:22 UTC
5106392 LEGO: check in for master to temporary branch. 16 October 2019, 16:10:11 UTC
408b176 doc(lib/es5): Fix grammar in DateConstructor.UTC documentation (#34509) This fixes #34507. 16 October 2019, 15:33:22 UTC
2c4cf0d Do not write build info if there are no files to emit 16 October 2019, 15:28:23 UTC
aaadb17 Merge pull request #34495 from microsoft/forceDts Add forceDtsEmit flag to getEmitOutput 16 October 2019, 15:14:47 UTC
f24db4c Merge pull request #33921 from sQVe/refactor/correct-misspelled-response refactor(spelling): correct misspelled response 16 October 2019, 15:07:25 UTC
2f48ff3 refactor(spelling): correct misspelled response 16 October 2019, 06:44:14 UTC
77f4d9f Update user baselines (#34411) 15 October 2019, 22:31:28 UTC
22c15a2 Merge pull request #34365 from elibarzilay/fix-exit-code-on-bogus-build-file Fix exit code on bogus build file 15 October 2019, 22:09:45 UTC
ab56cc0 Remove property-override-method error (#34494) Originally removed incorrectly along with method-override-property error in #24343, then both were restored in #33509. Only method-override-property should be an error, since it doesn't actually work at runtime. 15 October 2019, 21:11:51 UTC
d8d5ead Restore 'type' and 'namespace' to All completion filter (#34491) Vote in the comments below if you think I should restore other keywords! Remember to like and subscribe! 15 October 2019, 21:06:47 UTC
29f9493 Fix crash when exporting+aliasing globalThis inside `declare global` (#34408) * global module:Fix crash when exporting+aliasing globalThis * Fix another globalThis crash find-all-refs assumed that an export inside a `declare x` was always an ambient module, but it is not -- `declare global` does not allow `export`, so find-all-refs shouldn't return any refs for this error case. 15 October 2019, 21:05:39 UTC
730a52b Better format for the exit code test 15 October 2019, 19:35:08 UTC
cd34808 Fixes missing error exit code when a bogus input file is specified Fixes #33849. 15 October 2019, 19:35:07 UTC
f25575e Typofix: `..._OutputsSkupped` -> `..._OutputsSkipped` 15 October 2019, 19:13:11 UTC
a685ac4 Merge pull request #34212 from microsoft/fix34021 Fix control flow analysis for --noFallthroughCasesInSwitch 15 October 2019, 19:10:53 UTC
9c073ab Accept new baselines 15 October 2019, 18:11:35 UTC
cbcb59c Properly attach alias symbol to `readonly T[]` types 15 October 2019, 18:11:14 UTC
850d16e Add forceDtsEmit flag to getEmitOutput Fixes #33936 15 October 2019, 17:07:19 UTC
00505ad Accept new baselines 15 October 2019, 15:40:24 UTC
3438681 CR feedback + Consistent error spans on case/default clauses 15 October 2019, 15:40:16 UTC
bb4872b Do not write build info if there are no files to emit 15 October 2019, 15:37:23 UTC
c9d407b Merge pull request #34403 from microsoft/commandlinePath Make sure commandline options are absolute paths so they dont conflict with options from tsbuild info 15 October 2019, 15:28:33 UTC
758bd99 Add test for #30457 14 October 2019, 22:05:56 UTC
4b10145 Make sure commandline options are absolute paths so they dont conflict with tsbuildinfo paths Fixes #33667 14 October 2019, 21:44:47 UTC
827427f Add test for --tsbuildinfo not as absolute or relative path 14 October 2019, 21:29:14 UTC
b7c85c7 Update Math.round in es5.d.ts (#33920) Update documentation of Math.round to reflect that it turns a float in to an integer and returns an integer. 14 October 2019, 17:55:55 UTC
c2f2ac1 Update user baselines (#34345) 14 October 2019, 17:35:11 UTC
e146f0d Allow inferFromUsage to do auto-imports (#33915) * Add test * Auto-import instead of using ImportTypeNodes * Write more tests and fix namespace case * Remove unused enum memmber * Update API baselines * Lint * Style nits and util consolidation 14 October 2019, 17:33:00 UTC
1820df1 Update DOM from TSJS-lib-generator (#33753) This bumps generated bindings to include https://github.com/microsoft/TSJS-lib-generator/pull/767. Note that other related APIs were already updated in https://github.com/microsoft/TSJS-lib-generator/pull/755 and https://github.com/microsoft/TSJS-lib-generator/pull/756 and included in current TypeScript beta. Unfortunately, this one slipped under the radar, but it would be really great to include these changes in beta too for consistency between different WebAssembly methods. 14 October 2019, 16:00:33 UTC
21758a8 Accept new baselines 13 October 2019, 16:46:02 UTC
cc817bc Add tests 13 October 2019, 16:45:56 UTC
a8b9f96 Use control flow analyzer for switch case fallthrough checks 13 October 2019, 16:45:47 UTC
0d75038 Update user baselines (#34112) 13 October 2019, 12:23:42 UTC
b0d967b LEGO: Merge pull request 34111 LEGO: Merge pull request 34111 13 October 2019, 04:10:40 UTC
7df1ab7 LEGO: check in for master to temporary branch. 13 October 2019, 04:10:12 UTC
97a4a0e Update user baselines (#34002) 12 October 2019, 18:06:05 UTC
fcdd5bd Add assertion when classification has unexpected length 10 October 2019, 23:28:41 UTC
35a6426 Merge pull request #33647 from microsoft/defaultProject Use correct default project for file if that project is opened at later time 10 October 2019, 23:01:39 UTC
57d7edb Merge pull request #33883 from microsoft/revert-32887-incrementalNoEmit Revert "Disallow incremental with noEmit" 10 October 2019, 20:08:35 UTC
144b81c Use correct default project for file if that project is opened at later time Fixes #31926 10 October 2019, 20:02:33 UTC
ae4abc5 Merge pull request #33906 from falsandtru/github Update issue templates 10 October 2019, 18:52:23 UTC
6162001 fix #33427 (#33486) fix #33427 10 October 2019, 17:13:36 UTC
114329a Handle when import alias has to parent (therefore is synthetic module symbol) (#33813) 10 October 2019, 11:29:33 UTC
3c123b6 Merge pull request #33914 from amcasey/ConflictMarker Handle string literals in merge conflict regions 09 October 2019, 23:04:58 UTC
834b3f7 Update issue templates 09 October 2019, 22:36:14 UTC
87c905f Handle string literals in merge conflict regions Check for undefined, like the other code paths in the same function. 09 October 2019, 21:46:19 UTC
6104f74 Merge pull request #33831 from microsoft/falseAssertions Code following truthiness assertion with false argument is unreachable 09 October 2019, 20:23:05 UTC
back to top