Note

「⌘ + Shift + V」を使わずにペーストするとインデントが崩れる。

⌘ + Vの場合

export class HealthController extends BaseHttpController {
 
@httpGet("/")
 
async get(): Promise<JsonResult> {
 
const response = { status: "ok" };
 
return this.json(response, HttpStatus.Ok);
 
}
 
}

⌘ + Shift + Vの場合

export class HealthController extends BaseHttpController {
  @httpGet("/")
  async get(): Promise<JsonResult> {
    const response = { status: "ok" };
    return this.json(response, HttpStatus.Ok);
  }
}