i am using angular 16 but i am unable to import HotTableModule in the app.module.ts file i am getting this error
This likely means that the library (@handsontable/angular) which declares HotTableModule is not compatible with Angular Ivy. Check if a newer version of the library is available, and update if so. Also consider checking with the library’s authors to see if the library is expected to be compatible with Ivy.
here my dependences
{
“name”: “forcast-summary-webapp”,
“version”: “0.0.0”,
“scripts”: {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
“private”: true,
“dependencies”: {
"@angular/animations": "^16.0.0",
"@angular/common": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/core": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/platform-browser-dynamic": "^16.0.0",
"@angular/router": "^16.0.0",
"@handsontable/angular": "^12.3.3",
"handsontable": "^12.3.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
“devDependencies”: {
"@angular-devkit/build-angular": "^16.0.1",
"@angular/cli": "~16.0.1",
"@angular/compiler-cli": "^16.0.0",
"@types/jasmine": "~4.3.0",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~5.0.2"
}
}
and this my app.module.ts code
import { NgModule } from ‘@angular/core’;
import { BrowserModule } from ‘@angular/platform-browser’;
import { AppRoutingModule } from ‘./app-routing.module’;
import { AppComponent } from ‘./app.component’;
import { ExcelComponent } from ‘./excel/excel.component’;
import { HotTableModule } from ‘@handsontable/angular’;
import { registerAllModules } from ‘handsontable/registry’;
// register Handsontable’s modules
registerAllModules();
@NgModule({
declarations: [
AppComponent,
ExcelComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HotTableModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }