我正在學習使用Atom IDE的TypeScript。異步不能工作原子類型腳本
的問題是,當我嘗試下面的代碼
async function fn1() {
throw new Error("Not implemented yet");
}
我得到一個錯誤
在ES5/ES3異步函數或方法需要「承諾」的構造。
然而,如果我粘貼 https://www.typescriptlang.org/play/index.html
它的代碼編譯正確。此外,當我在Atom中使用Promise時,我沒有收到任何建議。