fix build error
All checks were successful
Publish npm package / publish (push) Successful in 24s

This commit is contained in:
Gregor Lohaus
2026-05-22 10:05:34 +02:00
parent 4d25d07687
commit 8ad2545310

View File

@@ -125,7 +125,7 @@ function addReverseMapToken(
state.manifest.tokens[token.result] = tokens state.manifest.tokens[token.result] = tokens
} }
function getReverseMapPath(destRoot: string, reverseMap: boolean | string): string { function getReverseMapPath(destRoot: string, reverseMap: true | string): string {
if (reverseMap === true) return resolveOutputPath(destRoot, ".tdir-map.json") if (reverseMap === true) return resolveOutputPath(destRoot, ".tdir-map.json")
return resolveOutputPath(destRoot, reverseMap) return resolveOutputPath(destRoot, reverseMap)
} }