webfactorymk / ng2-canvas-whiteboard

Canvas whiteboard
MIT License
99 stars 50 forks source link

ERROR using Angular 7 #50

Closed chaucachavez closed 5 years ago

chaucachavez commented 5 years ago

Hi, I use Angular CLI: 7.0.1 and Angular: 7.0.0.

When executing: ng serve -o

ERROR in src / .... module.ts (9,40): error TS2307: Cannot find module 'ng2-canvas-whiteboard/index'.

Please help.

Peshou commented 5 years ago

Hi, I am sorry but the current version does not have this issue on a new ng generated app.

Can you please remove the /index in the import so it's only import {CanvasWhiteboardModule} from 'ng2-canvas-whiteboard';

The sample module should look like:

.....
...
...
import {CanvasWhiteboardModule} from 'ng2-canvas-whiteboard';

@NgModule({
  declarations: [
    ....
  ],
  imports: [
    ....
    CanvasWhiteboardModule
  ],
  providers: [],
  bootstrap: [....]
})
export class ExampleModule {
}
Peshou commented 5 years ago

Will close for inactivity, please reopen if this issue still happens.

chaucachavez commented 5 years ago

Thanks for the help.