>[!note]
>「⌘ + Shift + V」を使わずにペーストするとインデントが崩れる。
⌘ + Vの場合
```ts
export class HealthController extends BaseHttpController {
@httpGet("/")
async get(): Promise<JsonResult> {
const response = { status: "ok" };
return this.json(response, HttpStatus.Ok);
}
}
```
⌘ + Shift + Vの場合
```typescript
export class HealthController extends BaseHttpController {
@httpGet("/")
async get(): Promise<JsonResult> {
const response = { status: "ok" };
return this.json(response, HttpStatus.Ok);
}
}
```