Closed
Description
-
VSCode Version:
Version 1.29.1
Typescript 3.1.4 -
OS Version:
macOS 10.14.1
Steps to Reproduce:
-
Create new angular app:
ng new app
-
Add new library:
yarn add @datorama/akita
-
Create session.model.ts:
export interface Session {
id: ID;
firstName: string;
lastName: string;
token: string;
}
Auto import is not working. I get this error:
[ts] Cannot find name 'ID'. [2304]
any
Starting VSCode with code --disable-extensions
didn't help :(