I am interested in utilizing the async/await feature of TypeScript in my VS2015 Cordova project. I have updated "target": "es6" in tsconfig.json
Although there are no errors shown in intellisense, I encounter the following error while building the project:
Error TS1311 Build: Async functions are only available when targeting ECMAScript 6 and higher.
Even though I have already changed the target to es6 in tsconfig.json
What other configurations should I make to successfully build the project?
Thank you.