(filePath: string)
| 147 | } |
| 148 | |
| 149 | export function canExternalizeFile(filePath: string): boolean { |
| 150 | const ext = path.extname(filePath) |
| 151 | // only external js imports |
| 152 | return !ext || ext === '.js' || ext === '.mjs' || ext === '.cjs' |
| 153 | } |
no outgoing calls
no test coverage detected