(id: string)
| 153 | ) |
| 154 | |
| 155 | function resolveEntry(id: string) { |
| 156 | const flatId = flattenId(id) |
| 157 | if (flatId in qualified) { |
| 158 | return { |
| 159 | id: qualified[flatId], |
| 160 | } |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | const bundleOutputDir = path.join(environment.config.cacheDir, 'deps') |
| 165 |