Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

How to configure with Visual Studio #548

Open
pg049 opened this issue Sep 26, 2018 · 1 comment
Open

How to configure with Visual Studio #548

pg049 opened this issue Sep 26, 2018 · 1 comment

Comments

@pg049
Copy link

pg049 commented Sep 26, 2018

As QuickStart repository is now deprecated, it is hard to understand and confusing that how to configure Angular project with Visual studio. Their is no example to explain this after repository deprecated Need Help for this. Thank you!

@chaitradangat
Copy link

Hi to configure with visual studio you need to
1)download the quickstart
2)copy the quickstart into your vs project
3)restore packages by right clicking package.json in vs
4)point the cmd window to the path of /src dir and type npm start
5)also you need to make changes in the index.html for the relevant paths for npm modules
6)make changes in tsconfig.json
{
"compileOnSave": true,
"compilerOptions": {
"noStrictGenericChecks": true,
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}
}

Happy Angular!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants