Microsoft/TypeScript

tsc looses trailing comments in the produced js files

Open

#60.811 geöffnet am 18. Dez. 2024

Auf GitHub ansehen
 (1 Kommentar) (1 Reaktion) (0 zugewiesene Personen)TypeScript (6.726 Forks)batch import
Domain: Comment EmitHelp WantedPossible Improvement

Repository-Metriken

Stars
 (48.455 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)

Beschreibung

🔎 Search Terms

"missing comments", "missing comments in .js output", "trailing comments"

🕗 Version & Regression Information

Happens in every version available in the playground (3.3.3 to v5.8.0-dev.20241218)

⏯ Playground Link

https://www.typescriptlang.org/play/?ts=5.7.2#code/MYGwhgzhAECC0G8CwAoa7oHpPQNYFN8AHAWggHsAnAF3wBNoJqwbUNoBbfagC3LtgAKAJSI27DMHIA7CiHwA6EOQDmggEQUa9dcIDc49AF9DWHAWJkqtBvml1URoA

💻 Code

class A {
    // keep-sorted start
    methodA() {
        console.log("sorted");
    }
    // keep-sorted end
}

🙁 Actual behavior

// keep-sorted end is missing in the .js output.

🙂 Expected behavior

// keep-sorted end is retained in the .js output.

Additional information about the issue

No response

Contributor Guide