(fileName: string)
| 9 | import { createNodeFromSource } from '@coderline/alphatab-transpiler/src/BuilderHelpers'; |
| 10 | |
| 11 | function removeExtension(fileName: string) { |
| 12 | return fileName.substring(0, fileName.lastIndexOf('.')); |
| 13 | } |
| 14 | |
| 15 | function toImportPath(fileName: string) { |
| 16 | return `@${removeExtension(fileName).split('\\').join('/')}`.replace('@src/', '@coderline/alphatab/'); |