0

I have this component working fine

enter image description here

But here I don't see it

enter image description here

Is in my app.module too

enter image description here

Any idea, please?

Thanks

kintela
  • 1,283
  • 1
  • 14
  • 32

2 Answers2

1

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

after click openfile

0

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,
        ...
      },
    ...
}
Gone
  • 111
  • 7