You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
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!
The text was updated successfully, but these errors were encountered:
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 freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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!
The text was updated successfully, but these errors were encountered: