Gantt Chart
Installation
npm install --save ganttmingo
Usage
Config angular.json file
angular.json > projects > {angular-project} > architect > build > options > scripts
"scripts": [
"node_modules/ganttmingo/dist/index.js"
]
Defines a schemas that allow NgModule contain "Custom Element"
Add CUSTOM_ELEMENTS_SCHEMA to the '@Component.schemas'
import { Component, CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
@Component({
selector: "app-root",
standalone: true,
schemas: [CUSTOM_ELEMENTS_SCHEMA],
template: `
<h1>Svelte in Angular!</h1>
<gantt-mingo />
`
})
export class AppComponent {}
REF: config-build-reference