macOS Sierra 10.12.3
@angular/cli: 1.0.0-rc.0
node: 7.6.0
os: darwin x64
@angular/common: 2.4.8
@angular/compiler: 2.4.8
@angular/core: 2.4.8
@angular/forms: 2.4.8
@angular/http: 2.4.8
@angular/material: 2.0.0-beta.2
@angular/platform-browser: 2.4.8
@angular/platform-browser-dynamic: 2.4.8
@angular/router: 3.4.8
@angular/cli: 1.0.0-rc.0
@angular/compiler-cli: 2.4.8
I recently re-installed my operating system. And i installed latest versions of node and angular-cli.
ng new <name>
In code editor, it shows compiler error. But it runs without error. I also have an application which was created by angular-cli-beta. It doesn't show any compiler error in that.
I don't know if it is an issue for angular-cli or vscode. Do let me know.
**well in line number 47
I also have uploaded the code on github.
You can find repository here.
My tsconfig.json file.
My package.json file.
I have commented on a specific file to elaborate the issue. You can it here (logout function at the bottom of the page)
I hope this helps.
There was an issue with tsconfig. Added a field there and it was working.
Can you explain what the issue was and how you fixed this? I've got almost the same error.
I updated my tsconfig.json. added dom
in lib
property of compilerOptions
(like this) and restarted IDE. And it worked.
Same problem here.
The above solution solve the problem. Thanks @ndkcha
Thanks @ndkcha. I didn't even need to restart VS Code.
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
I updated my tsconfig.json. added
dom
inlib
property ofcompilerOptions
(like this) and restarted IDE. And it worked.