From 5ebe762d4b39f4840c01a5a9b72926a0ad3c9241 Mon Sep 17 00:00:00 2001 From: Gaven Henry Date: Thu, 26 May 2022 00:51:19 +0800 Subject: [PATCH] update to create ivy distribution (#4198) --- tsconfig.core.json | 6 +++++- tsconfig.json | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/tsconfig.core.json b/tsconfig.core.json index cafa7cac..0ebcf67d 100644 --- a/tsconfig.core.json +++ b/tsconfig.core.json @@ -17,5 +17,9 @@ "sourceMap": true }, "include": ["src/@awesome-cordova-plugins/core/**/*.ts"], - "exclude": ["node_modules", "src/@awesome-cordova-plugins/core/**/*.spec.ts"] + "exclude": ["node_modules", "src/@awesome-cordova-plugins/core/**/*.spec.ts"], + "angularCompilerOptions": { + "genDir": "aot", + "compilationMode": "partial" + } } diff --git a/tsconfig.json b/tsconfig.json index aabac331..561cad68 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,6 +21,7 @@ }, "include": ["src/@awesome-cordova-plugins/plugins/**/*.ts"], "angularCompilerOptions": { - "genDir": "aot" + "genDir": "aot", + "compilationMode": "partial" } }