I have this component working fine
But here I don't see it
Is in my app.module too
Any idea, please?
Thanks
I have this component working fine
But here I don't see it
Is in my app.module too
Any idea, please?
Thanks
Simply you can click the vertical three dots that can see in the screen shot and there may be an option call openfile. From that you can search with your file name. after clicking three dots
try to use sourceMap: true into your angular.json, it allow you to apply ts code to the chrome debugger. Then you ctrl + p to find your file name.
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
...
"sourceMap": true,
...
},
...
}