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
First of all, thank you very much for this amazing tool, but in the process of using , I found the ts code which uses alias or path alias, neither the generated dependency tree nor the entropy diagram, there are none of these alias dependent resource files, such as:
// src/index.ts
import { environment } from '@Environment';
import '@/a/b/c';
I'm trying to replicate the issue but it seems to be working fine. Can you provide more info about your setup? I would be interested in knowing the full tsconfig.json, where your source files are located, and anything else you can provide that can help reproduce the issue.
First of all, thank you very much for this amazing tool, but in the process of using , I found the ts code which uses
alias
orpath alias
, neither the generated dependency tree nor the entropy diagram, there are none of these alias dependent resource files, such as:// src/index.ts
import { environment } from '@Environment';
import '@/a/b/c';
// tsconfig.json
"paths": {
"@/": ["./src/"],
"@Environment": ["./src/environments/environments.ts"
].
the dependencies of src/index.ts does not have the
environment
or the@/a/b/c
The text was updated successfully, but these errors were encountered: