(id: string)
| 112 | const matchPath = tsconfigPath ? createMatchPath(tsconfigPath) : undefined; |
| 113 | |
| 114 | function resolvePath(id: string) { |
| 115 | if (!matchPath) { |
| 116 | return id; |
| 117 | } |
| 118 | return matchPath(id, undefined, undefined, [".ts", ".tsx", ".js", ".jsx"]) || id; |
| 119 | } |
| 120 | |
| 121 | return { |
| 122 | name: "trigger-bundle-dependencies", |
no outgoing calls
no test coverage detected
searching dependent graphs…