A colleague asked me for help when he got into trouble with his TypeScript code. Here is a simplified version:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var obj = { a: 1 }; | |
var copy = Object.assign({}, obj); | |
console.log(copy); // { a: 1 } |
Although this looks like valid code, the TypeScript compiler complained:
After some headscratching, we discovered that there was a “rogue” tsconfig.json at a higher level that set “ES5” as the target. Object.Assign was added as part of “ES6” explaining why TypeScript complained.
After changing the target to “es6”, the error disappeared.