Angular uses webpack and all type script files are listed under it. To select your target typescript file, Chrome's Developer tool (F12). Go to Source tab,

Select Chrome "webpack://"->"src/app" -> your typescript file.

Or in older version of chrome follow this path "webpack://"->"."->"src/app" -> your typescript file ( See the image file).

Or Ctrl+P to locate your file(as suggested by fergal_dd)

Then set the debug line marker on ts file and use normal java script keyboard(F8, F10, F11 etc) feature to debug it.

Answer from kumar chandraketu on Stack Overflow
🌐
Danywalls
danywalls.com › how-to-debug-angular-applications-easy
How To Debug Angular Applications Easy | DanyWalls
Today, we are going to learn some ways to save time debugging our Angular applications using ng.global, Angular DevTools, and VSCode. When debugging, you frequently need to select a specific element for inspection or modification. Instead of laboriously navigating through the Document Object Model (DOM) or writing intricate query selectors, you can utilize the Chrome Picker Tool.
Published   June 17, 2023
🌐
Medium
medium.com › @sehban.alam › mastering-angular-debugging-with-angular-devtools-chrome-extension-c694653d948e
Mastering Angular Debugging with Angular DevTools Chrome Extension | by Sehban Alam | Medium
November 13, 2024 - The Angular DevTools extension is a free tool for Chrome that gives developers a powerful set of debugging and profiling options, making it easier to understand and optimize the inner workings of an Angular app.
Discussions

How to debug AngularJS in Chrome Browser - Stack Overflow
I am working on AngularJS. I want to debug the code in the chrome. More on stackoverflow.com
🌐 stackoverflow.com
VSCode Debugging with Angular
You can just place break point straight in browser devtools (remember to enable sourcemap). You don't need to console.log More on reddit.com
🌐 r/Angular2
18
13
November 8, 2024
Simple Methods for Debugging Angular Applications
I usually use the chrome-debugger-extension for visual code to run the app in debug mode. I know from a colleague that he uses some additional tools. I also recommend to use the bundle-analyzer from time to time More on reddit.com
🌐 r/Angular2
2
14
June 17, 2023
Cannot debug Angular 18 from VSCode
console.log('is4everKing') More on reddit.com
🌐 r/Angular2
8
5
August 17, 2024
🌐
BrowserStack
browserstack.com › home › guide › how to debug angular app in chrome
How to debug Angular App in Chrome | BrowserStack
May 30, 2025 - ... Note: This works only if the app runs in development mode and exposes the Angular global ng object. You can view Angular source code in the browser by following the steps below: Open Chrome DevTools by right-clicking and selecting Inspect.
🌐
UpStack
upstackhq.com › upstack blog › software development
How to Debug Angular with Chrome Developer Tools
It also highlights any resources that are not encrypted. When it comes to debugging Angular code using the Chrome DevTools, you can leverage features such as the console, network panel, and JavaScript Debugger.
🌐
Angular
angular.dev › guide › testing › debugging
Debugging tests • Angular
The test runner will start in debug mode and wait for a debugger to attach. You can now attach your preferred debugger. For example, you can use the built-in Node.js debugger in VS Code or the Chrome DevTools for Node.js.
🌐
Htmlelements
htmlelements.com › docs › angular-debug
Angular Debug with Visual Studio Code or Chrome DevTools | https://www.htmlelements.com/
To debug the client side Angular code, we'll need to install the "Debugger for Chrome" extension. Open the Extensions view (Ctrl+Shift+X) and type 'chrome' in the search box.
Find elsewhere
🌐
Angular.love
angular.love › debugging-techniques-chrome-devtools
Debugging techniques in Angular - Using Chrome DevTools
May 19, 2024 - and then use “show function definition” functionality like this to locate the class definition: The template function generated by Angular’s compiler should be right underneath the component's class: Once you put a breakpoint into the template function, hover over the box. When the debugger pauses the execution, we can inspect the callstack.
🌐
YouTube
youtube.com › watch
How to debug angular application in chrome | Angular Tutorial For Beginners - YouTube
Angular 10 Tutorial, how to debug angular application in chrome, debug angular in visual studio code, debug angular in chrome, debug angular, debug angular a...
Published   March 3, 2021
🌐
OpenReplay
blog.openreplay.com › how-to-debug-angular-apps-with-chrome-devtools
How to Debug Angular Apps with Chrome DevTools
List all modules that the application is using and check their providers and exports. Angular Augury is definitely a big plus, but the best debugging tool comes already bundled with your browser.
🌐
Offering
offering.solutions › startseite › how to debug an angular application with chrome and vs code
How to Debug an Angular Application With Chrome and vs Code - Angular Consultant Switzerland | Architecture, Training & Workshops
January 17, 2023 - After installing you probably have ... structure like normal. Then head over to the debug tab and press the button for creating you an new configuration and select the “Chrome” environment....
🌐
JetBrains
jetbrains.com › help › idea › run-and-debug-angular-applications.html
Run and debug Angular applications | IntelliJ IDEA Documentation
March 10, 2026 - From the list in the Run widget on the toolbar, select a run configuration of the type npm. This can be the autogenerated Angular CLI Server configuration or a custom one that you created yourself ...
🌐
CoreUI
coreui.io › answers › how-to-debug-angular-with-chrome-devtools
How to debug Angular with Chrome DevTools · CoreUI
January 15, 2026 - Debug Angular applications using Chrome DevTools with breakpoints, console debugging, and source map navigation.
🌐
Visual Studio Code
code.visualstudio.com › docs › nodejs › angular-tutorial
Using Angular in Visual Studio Code
November 3, 2021 - To debug the client side Angular code, we'll use the built-in JavaScript debugger. Note: This tutorial assumes you have the Edge browser installed. If you want to debug using Chrome, replace the launch type with chrome.
🌐
Angular
v17.angular.io › guide › devtools
Angular
Angular is a platform for building mobile and desktop web applications. Join the community of millions of developers who build compelling user interfaces with Angular.
🌐
C# Corner
c-sharpcorner.com › article › debugging-an-angular-application-in-chrome
Debugging An Angular Application In Chrome
April 22, 2024 - Next, we open the application in the Chrome browser and complete the following steps, Open the developer tools by selecting “More tools” and then “Developer tools”. The shortcut to get there is “Ctrl+Shift+I”. ... Now, you will see ...
🌐
Reddit
reddit.com › r/angular2 › vscode debugging with angular
r/Angular2 on Reddit: VSCode Debugging with Angular
November 8, 2024 -

Hello! I am a developer whose team is moving to Angular for the rewrite of our web application. I am going through training, and wanted to test some basic debugging through VSCode. I have been having some issues: If I set a breakpoint in VSCode, the browser starts just spinning, and becomes unresponsive, requiring me to kill the browser.

A new coworker of mine, who has worked with Angular in the past, says that there is no way to step through Angular in VSCode, something that I believe to be false through reading other online developer's experiences. I was also told that I should "just use console.log instead of browser debugging capabilities." (Somewhat irrelevant, but a head-scratcher)

But, right now I am having this block with debugging Angular with VSCode. I'm using just a template app from ng New and putting a breakpoint in app.component.ts where title gets set.

I am in development mode, and I'm using msedge.

Is there anything I'm missing, or is it really impossible to debug an Angular app through VSCode? I can sometimes get breakpoints to work temporarily through the javascript debugging terminal.

🌐
Chrome Web Store
chromewebstore.google.com › detail › angular-devtools › ienfalfjdbdpebioblfackkekamfmbnh
Angular DevTools - Chrome Web Store
Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities. You can use Angular DevTools to understand the structure of your application and preview the state of the directive and the component instances.
🌐
Chrome Developers
developer.chrome.com › blog › case study: better angular debugging with devtools
Case Study: Better Angular Debugging with DevTools | Blog | Chrome for Developers
August 31, 2022 - Even though some of these changes are demonstrated through Angular, they can be applied to other frameworks as well. The Chrome DevTools team encourages other frameworks to adopt the new console APIs and source map extension points so they too can offer a better debugging experience to their users. When debugging applications using Chrome DevTools, authors generally only want to see just their code, not that of the framework underneath or some dependency tucked away in ...