This is a weird issues due to combinaison of upgrades that will be tricky to work around.
for some reason gulp-typescript do not warn of not-matching types, and a String end up being used as an object, leading to double serialisation, and late faillure at deserialisation.
so now to work around you have (sometime) to work around the doubled serialized notebook by JSON.parse twice. Which is a bit brittle, I think but should work.
This is a weird issues due to combinaison of upgrades that will be tricky to work around.
for some reason gulp-typescript do not warn of not-matching types, and a
String
end up being used as an object, leading to double serialisation, and late faillure at deserialisation.so now to work around you have (sometime) to work around the doubled serialized notebook by
JSON.parse
twice. Which is a bit brittle, I think but should work.