0
votes

On stackblitz, when trying to add import to Angular Material , like this:

import { MatCheckboxModule } from '@angular/material';

This is the error:

File '/turbo_modules/@angular/[email protected]/index.d.ts' is not a module.

Here link to stackblitz https://stackblitz.com/edit/angular-ivy-11rird?file=src%2Fapp%2Fapp.module.ts

1

1 Answers

0
votes

Added like this

import {  MatCheckboxModule} from '@angular/material/checkbox';

Now it is working.