(p: string)
| 101 | |
| 102 | // Normalize the paths to absolute paths. |
| 103 | function normalizePath(p: string) { |
| 104 | return path.resolve(BASE_PATH, p); |
| 105 | } |
| 106 | |
| 107 | finalConfig.models = finalConfig.models.map(normalizePath); |
| 108 | finalConfig.entries = finalConfig.entries.map(normalizePath); |
no outgoing calls
no test coverage detected
searching dependent graphs…