When I make a new Ionic --v2 project and use an async function declaration, ionic build browser fails with:
db.ts:15:16: Async functions are only available when targeting ECMAScript 2015 or higher.
I would have thought that changing tsconfig.json's target to es6 would fix the problem, but it did not. What can I do to resolve this so that I can use async/await in my Ionic projects?