Are there any means for JSON serialization/deserialization of Typescript objects so that they don\'t loose type information? Simple JSON.parse(JSON.stringify) has t
JSON.parse(JSON.stringify)
The AQuirky answer works for me. You may have some troubles with the Object.assign method. I had to modify my tsconfig.json to include:
"compilerOptions": { ... "lib": ["es2015"], ... }