Skip to content

Commit

Permalink
i18n(ko-KR): update typescript.mdx (#8832)
Browse files Browse the repository at this point in the history
* i18n(ko-KR): update `typescript.mdx`

* fix: typo

* fix: update broken links

---------

Co-authored-by: Yan <61414485+yanthomasdev@users.noreply.github.com>
  • Loading branch information
jsparkdev and yanthomasdev committed Jul 17, 2024
1 parent 661479f commit 0ead8a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Astro는 원시 HTML을 출력하므로 빌드 단계의 출력을 사용하여

### CRA Imports 변환

상대 파일 경로를 정확하게 참조하도록 모든 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [가져오기 별칭](/ko/guides/typescript/#가져오기-별칭)을 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.
상대 파일 경로를 정확하게 참조하도록 모든 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [별칭 가져오기](/ko/guides/typescript/#별칭-가져오기)를 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.

`.astro` 및 기타 여러 파일 형식은 전체 파일 확장자를 사용하여 가져와야 합니다.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const { to } = Astro.props

### Gatsby Imports 변환

필요한 경우 상대 파일 경로를 정확하게 참조하도록 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [가져오기 별칭](/ko/guides/typescript/#가져오기-별칭)을 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.
필요한 경우 상대 파일 경로를 정확하게 참조하도록 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [별칭 가져오기](/ko/guides/typescript/#별칭-가져오기)를 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.

`.astro` 및 기타 여러 파일 타입은 전체 파일 확장자를 사용하여 가져와야 합니다.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ const { to } = Astro.props;

### Next Imports 변환

상대 파일 경로를 정확하게 참조하도록 모든 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [가져오기 별칭](/ko/guides/typescript/#가져오기-별칭)을 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.
상대 파일 경로를 정확하게 참조하도록 모든 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [별칭 가져오기](/ko/guides/typescript/#별칭-가져오기)를 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.

`.astro` 및 기타 여러 파일 형식은 전체 파일 확장자를 사용하여 가져와야 합니다.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ const { to } = Astro.props

### Nuxt Imports 변환

필요한 경우 상대 파일 경로를 정확하게 참조하도록 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [가져오기 별칭](/ko/guides/typescript/#가져오기-별칭) 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.
필요한 경우 상대 파일 경로를 정확하게 참조하도록 [파일 가져오기](/ko/guides/imports/)를 업데이트하세요. 이는 [별칭 가져오기](/ko/guides/typescript/#별칭-가져오기) 사용하거나 상대 경로 전체를 작성하여 수행할 수 있습니다.

`.astro` 및 기타 여러 파일 형식은 전체 파일 확장자를 사용하여 가져와야 합니다.

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/ko/guides/typescript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ TypeScript는 가져오기를 확인하고 `import type`을 사용해야 하는
}
```

## 가져오기 별칭
## 별칭 가져오기

Astro는 `tsconfig.json` `jsconfig.json` 파일의 `paths` 구성에서 설정할 수 있는 [가져오기 별칭](/ko/guides/imports/#별칭) 지원합니다.
Astro는 `tsconfig.json` 파일의 `paths` 구성에서 설정할 수 있는 [별칭 가져오기](/ko/guides/imports/#별칭) 지원합니다.

```astro title="src/pages/about/nate.astro" "@components" "@layouts"
---
Expand Down

0 comments on commit 0ead8a6

Please sign in to comment.