1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
//// [commentWithUnreasonableIndentationLevel01.ts]
// Repro from #41223
/**
* This is a comment with dumb indentation for some auto-generated thing.
*/
export class SomeAutoGeneratedThing {}
//// [commentWithUnreasonableIndentationLevel01.js]
"use strict";
// Repro from #41223
Object.defineProperty(exports, "__esModule", { value: true });
exports.SomeAutoGeneratedThing = void 0;
/**
* This is a comment with dumb indentation for some auto-generated thing.
*/
var SomeAutoGeneratedThing = /** @class */ (function () {
function SomeAutoGeneratedThing() {
}
return SomeAutoGeneratedThing;
}());
exports.SomeAutoGeneratedThing = SomeAutoGeneratedThing;
|