13

I am getting following error when running ng serve...

PS F:\Projects\RecipeApp> ng serve
Invalid JSON character: "\"" at 76:13.
Error: Invalid JSON character: "\"" at 76:13.
    at _token (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:63:19)
    at _readArray (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:316:9)
    at _readValue (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:561:22)
    at _readProperty (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:398:19)
    at _readObject (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:431:30)
    at _readValue (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:564:22)
    at _readProperty (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:398:19)
    at _readObject (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:431:30)
    at _readValue (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:564:22)
    at _readProperty (F:\Projects\RecipeApp\node_modules\@angular-devkit\core\src\json\parser.js:398:19)

I am using angular version 6

saeef ahmed
  • 518
  • 1
  • 7
  • 21

7 Answers7

37

Check your Angular.json.

It seems that this config file is not correct.


Update for clarification:
A misplaced "/" in the angular.json will create exactly that kind of error.

JanRecker
  • 1,521
  • 8
  • 15
  • 2
    You'r Answer could be comment. – Arash Jul 25 '18 at 10:53
  • 1
    In this case it´s the answer, because you will get exactly the described error, if you put a "/" at the wrong place in your Angular.json. But, yes, you are right, this could also be a comment to clarify the error description. – JanRecker Jul 25 '18 at 11:04
  • 3
    There was syntax error in my angular.json. I'd added a line to the 'styles' section, but forgot to add a "," on the end of the previous line. – Andrew Fielden Oct 26 '18 at 14:18
  • In my case, a comma was missing from the end of a line in angular.json. – zeeawan Mar 21 '21 at 06:14
7

In my case the problem was Visual Studio 2017 adding UTF-8 BOM characters to angular.json after I edited the file.

Permanent solution for Visual Studio and Angular CLI was to open the file once and save as UTF-8 without signature

  1. Go to File -> Save As.

FileSaveAs

  1. Then on Save button click on triangle and click Save with Encoding....

SaveAsPopUp

  1. From Encodings dropdown select UTF-8 Without signature -> Click OK.

AdvancedSaveOptions

Daniel Manta
  • 5,682
  • 13
  • 35
  • 38
2

Open the file in Notepad++ and change the encoding to UTF-8 then save it will work for sure :)

  • Its mainly due to the syntax error in angular.json file. make sure there is a comma (,) in every end of the previous line. and also check the slash ( / and \ ) in path. use "/" instead of "\". – Sinju Angajan Feb 26 '19 at 04:45
0

Looks like you've added a path in the angular.json file with "\" instead of "/".

rma310
  • 1
  • 1
0

Its mainly due to the syntax error in angular.json file. make sure there is a comma (,) in every end of the previous line. and also check the slash ( / and \ ) in path. use "/" instead of "\".

Sinju Angajan
  • 775
  • 2
  • 9
  • 19
0

I just had the same issue as described while using the "ng g c" command. The issue was that I forgot a comma (,) while adding a second style-sheet to the angular.json file.

Hope this helps someone, Vlad

-1

Make sure angular.json encoding in UTF-8 not UTF-8-BOM.

Prakash Pazhanisamy
  • 967
  • 1
  • 13
  • 25