From deb4a1b310ef61fded0bdc936b2c28a835a67e46 Mon Sep 17 00:00:00 2001 From: Joseph Wang Date: Wed, 22 Jan 2020 19:25:37 +0800 Subject: [PATCH] fix(tsconfig.json): transpile async await in order to be compatible to rollup-plugin-typescript2 (#324) issue https://github.com/ezolenko/rollup-plugin-typescript2/issues/105 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index bc9b695..f0a5c85 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "baseUrl": ".", "outDir": "dist", "sourceMap": false, - "target": "esnext", + "target": "ES2015", "module": "es6", "moduleResolution": "node", "resolveJsonModule": true,