Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
cca98c3
Parse json using our own parser
sheetalkamat Nov 11, 2016
b3f816b
Reorganize functions so commandline parser can include parser.
sheetalkamat Nov 14, 2016
0b3074f
Keep the original api and add new api that handles the JsonNode
sheetalkamat Nov 16, 2016
25be912
Merge branch 'master' into ownJsonParsing
sheetalkamat Nov 23, 2016
005123f
Handle typingOptions to typeAcquisition rename when converting parsed…
sheetalkamat Nov 23, 2016
6419de9
Merge branch 'master' into ownJsonParsing
sheetalkamat Nov 23, 2016
0dd944a
Clean up api so that parsing returns JsonSourceFile
sheetalkamat Nov 24, 2016
c7744a8
Merge branch 'master' into ownJsonParsing
sheetalkamat Nov 30, 2016
f83e754
Merge branch 'master' into ownJsonParsing
sheetalkamat Dec 15, 2016
236e15a
Merge branch 'master' into ownJsonParsing
sheetalkamat Dec 21, 2016
0bbbc51
Merge branch 'master' into ownJsonParsing
sheetalkamat Jan 17, 2017
d3ce95f
Merge branch 'master' into ownJsonParsing
sheetalkamat Jan 23, 2017
911511e
Report option diagnostic in tsconfig.json if possible
sheetalkamat Nov 29, 2016
98bd310
Update the protocol to return file name in compiler diagnostics and p…
sheetalkamat Nov 29, 2016
cb1b164
Encorporated PR feedback
sheetalkamat Feb 8, 2017
6f568b3
Merge branch 'master' into ownJsonParsing
sheetalkamat Apr 17, 2017
d7e9609
Merge branch 'master' into ownJsonParsing
sheetalkamat May 11, 2017
b60de87
Merge branch 'master' into ownJsonParsing
sheetalkamat May 11, 2017
c97b389
Simplifying the json conversion notifier
sheetalkamat May 11, 2017
ec2f967
Merge branch 'master' into ownJsonParsing
sheetalkamat May 15, 2017
ea60e99
Get configFiles as part of file names
sheetalkamat May 15, 2017
7cf93f9
Report config file errors as part of syntactic diagnostic on the file
sheetalkamat May 23, 2017
20570b0
Merge pull request #15867 from Microsoft/configFileInListOfProjectFiles
sheetalkamat May 23, 2017
f1ea38d
Merge branch 'master' into ownJsonParsing
sheetalkamat May 24, 2017
5501892
Fix the build break of typings installer
sheetalkamat May 24, 2017
16fd947
Reorganized code to keep createBundle and updateBundle in factory.ts
sheetalkamat May 26, 2017
7bd9e09
Make configFile on compiler options as non enumerable
sheetalkamat May 27, 2017
7db76ed
Always return empty object when converting the json sourcefile into a…
sheetalkamat May 27, 2017
8d771ca
Merge branch 'master' into ownJsonParsing
sheetalkamat May 30, 2017
8f4f6c5
Merge branch 'master' into ownJsonParsing
sheetalkamat Jun 1, 2017
d680720
Merge branch 'master' into ownJsonParsing
sheetalkamat Jun 5, 2017
c4ad151
Merge branch 'master' into ownJsonParsing
sheetalkamat Jun 6, 2017
48189c8
Merge branch 'master' into ownJsonParsing
sheetalkamat Jun 6, 2017
09f0b34
Merge branch 'master' into ownJsonParsing
sheetalkamat Jun 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into ownJsonParsing
  • Loading branch information
sheetalkamat committed Jun 6, 2017
commit 48189c883f4e5f4549d98d6e7deb3e8d79d1b204
23 changes: 20 additions & 3 deletions src/compiler/diagnosticMessages.json
Original file line number Diff line number Diff line change
Expand Up @@ -883,14 +883,31 @@
"category": "Error",
"code": 1322
},
"String literal with double quotes expected.": {
"Dynamic import cannot be used when targeting ECMAScript 2015 modules.": {
"category": "Error",
"code": 1323
},
"Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.": {
"Dynamic import must have one specifier as an argument.": {
"category": "Error",
"code": 1324
},
"Specifier of dynamic import cannot be spread element.": {
"category": "Error",
"code": 1325
},
"Dynamic import cannot have type arguments": {
"category": "Error",
"code": 1326
},
"String literal with double quotes expected.": {
"category": "Error",
"code": 1327
},
"Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.": {
"category": "Error",
"code": 1328
},

"Duplicate identifier '{0}'.": {
"category": "Error",
"code": 2300
Expand Down Expand Up @@ -3612,7 +3629,7 @@
"category": "Message",
"code": 90024
},

"Convert function to an ES2015 class": {
"category": "Message",
"code": 95001
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.