Salve a tutti,
sono ancora inesperto di javascript/Typescript e sto seguendo un corso online dove mi si chiede di lanciare questo codice per capire le
OBSERVABLE… quindi da studio code in un semplice file js ho scritto:
var arrObs = Rx.Observable.from([1, 2, 3, 4, 5]);
arrObs.subscribe(function(num) {
console.log('Elemento Osservato ' + num);
});
Il mio packege.json è
{
“devDependencies”: {
“rxjs”: “^7.8.1” }
};
{ “type”: "module";}
Quando lancio il npm run build mi da un errore:
PS C:\Typescr> npm run build
npm error code EJSONPARSE
npm error JSON.parse Invalid package.json: JSONParseError: Unexpected non-whitespace character after JSON at position 56 while parsing near "... \"^7.8.1\"\n \n }\n};\n{\n \n \"type\": \"mo..."
npm error JSON.parse Failed to parse JSON data.
npm error JSON.parse Note: package.json must be actual JSON, not just JavaScript.
Mi potete aiutare a capire dove sbaglio? E' forse il json che va configurato?