SymbolGraphGen currently emits absolute paths in symbolgraph files:
"location": {
"uri": "file:///home/ubuntu/package-name/Sources/Module/main.swift",
"position": {
"line": 1,
"character": 9
}
}
is there a way to configure it to emit paths relative to the package root instead?
"location": {
"uri": "Sources/Module/main.swift",
"position": {
"line": 1,
"character": 9
}
}