I created a new Angular project and a new module inside that project using the CLI. If I try to import the newly created module in app.module.ts the Intellisense doesn't work and it can't find the module to auto-import it. I didn't change anything inside the tsconfig.json files.
- Angular CLI: 10.0.4
- Node: 12.16.3
- Angular: 10.0.5
- Typescript: 3.9.7
- VS Code: 1.47.3
Any idea what could cause it?
EDIT: A manual import works fine, but I'm asking about the auto-import functionality.
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
@NgModule({
declarations: [],
imports: [
CommonModule
]
})
export class TestModule { }

