(fileName: string)
| 399 | const root = path.resolve(__dirname, '..'); |
| 400 | |
| 401 | export function toImportPath(fileName: string) { |
| 402 | return `@${removeExtension(path.relative(root, fileName)).replaceAll('\\', '/')}`.replace('@src/', '@coderline/alphatab/'); |
| 403 | } |
| 404 | |
| 405 | function findModule(type: ts.Type, options: ts.CompilerOptions) { |
| 406 | if (type.symbol && type.symbol.declarations) { |
no test coverage detected