(path: string)
| 210 | ), |
| 211 | }; |
| 212 | const resolveSvelteInternalImport = (path: string): string | undefined => |
| 213 | path.startsWith('#client/') |
| 214 | ? resolve( |
| 215 | 'node_modules/svelte/src/internal/client', |
| 216 | path.slice('#client/'.length) + (extname(path) == '' ? '.js' : ''), |
| 217 | ) |
| 218 | : undefined; |
| 219 | |
| 220 | const forEachDeepFile = ( |
| 221 | dir: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…