How can I use JSON.stringify with a Typescript Map. The presumption is the Map keys are all strings.
In this example, the console output is an empty {}
const myMap = new Map<string, Employee>();
myMap.set('employee1', new Employee());
myMap.set('employee2', new Employee());
myMap.set('employee3', new Employee());
console.log('myMap', JSON.stringify(myMap));