Browse Source

fix: build errors

pull/24234/head
sumeyye 9 months ago
parent
commit
a9e5323c23
  1. 8
      npm/ng-packs/packages/cms-kit/ng-package.json
  2. 1
      npm/ng-packs/packages/cms-kit/src/components/toast-ui/toastui-editor.component.ts
  3. 3
      npm/ng-packs/packages/cms-kit/tsconfig.json

8
npm/ng-packs/packages/cms-kit/ng-package.json

@ -4,5 +4,11 @@
"lib": {
"entryFile": "src/public-api.ts"
},
"allowedNonPeerDependencies": ["@abp/ng.theme.shared", "@abp/ng.components"]
"allowedNonPeerDependencies": [
"@abp/ng.theme.shared",
"@abp/ng.components",
"@abp/ng.setting-management",
"@toast-ui/editor",
"codemirror"
]
}

1
npm/ng-packs/packages/cms-kit/src/components/toast-ui/toastui-editor.component.ts

@ -72,7 +72,6 @@ export class ToastuiEditorComponent implements AfterViewInit, ControlValueAccess
el: this.editorContainer.nativeElement,
previewStyle: 'tab',
height: '500px',
autofocus: true,
theme: theme,
initialValue: this.value,
});

3
npm/ng-packs/packages/cms-kit/tsconfig.json

@ -11,6 +11,7 @@
}
],
"compilerOptions": {
"target": "es2020"
"target": "es2020",
"skipLibCheck": true
}
}

Loading…
Cancel
Save