Я пытаюсь запустить приложение по умолчанию, сгенерированное Angular, в проекте надстройки Google doc (Google App Script). Как и в скрипте приложения Google, разрешены только файлы .gs и .html. Я переместил все файлы JS сборки angular вСкрипт теги и добавил их в виде HTML.Но когда я запускаю надстройку, я получаю эту ошибку
userCodeAppPanel:6862 Uncaught Error: Can't resolve all parameters for ApplicationModule: (?).
at syntaxError (userCodeAppPanel:6862)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver._getDependenciesMetadata (userCodeAppPanel:22346)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver._getTypeMetadata (userCodeAppPanel:22241)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleMetadata (userCodeAppPanel:22109)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleSummary (userCodeAppPanel:21920)
at userCodeAppPanel:22033
at Array.forEach (<anonymous>)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleMetadata (userCodeAppPanel:22021)
at CompileMetadataResolver.push../node_modules/@angular/compiler/fesm5/compiler.js.CompileMetadataResolver.getNgModuleSummary (userCodeAppPanel:21920)
at userCodeAppPanel:22006
Структура каталогов в проекте сценария приложения Google
мой модифицированный index.html для app-script
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularAddOn</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<?!= include('runtime.js');?>
<?!= include('vendor.js');?>
<?!= include('styles.js');?>
<?!= include('main.js');?>
<?!= include('polyfills.js');?>
<?!= include('es2015-polyfills.js');?>
<app-root></app-root>
</body>
</html>
А вот мой файл code.gs
function myFunction() {
}
function onOpen(e) {
DocumentApp.getUi().createAddonMenu()
.addItem('Manage Citations', 'showSidebar')
// .addItem("test dialog", 'showDialog')
.addToUi();
}
function showSidebar() {
var html = HtmlService.createTemplateFromFile('index').evaluate().setSandboxMode(HtmlService.SandboxMode.IFRAME).setTitle('wizdom.ai');
DocumentApp.getUi().showSidebar(html);
}
function include(filename) {
return HtmlService.createHtmlOutputFromFile(filename).getContent();
}
Нельзя ли запустить angular в надстройке Google?или я что-то упустил?
я уже пытался добавить следующее в polyfills.ts, но не повезло
import 'core-js/es7/reflect';
Спасибо