Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

translate 'Watch_and_Build_Modes_6250.md' en->ko #232

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/tsconfig/ko/categories/Watch_and_Build_Modes_6250.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
display: "Watch Options"
---

TypeScript 3.8에서 새로운 디렉토리 감시 전략이 도입되었습니다. 이 전략은 `node_modules`의 변경 사항을 효율적으로 감지하기 위해 매우 중요한 기능입니다.

Linux와 같은 운영체제에서는, TypeScript가 의존성 변경을 감지하기 위해 `node_modules`와 많은 하위 디렉토리에 파일 감시자 대신 디렉토리 감시자를 설치합니다. 그 이유는 `node_modules` 폴더 내 파일 수가 감시할 수 있는 파일 감시자의 수를 종종 초과하지만, 추적해야 하는 디렉토리의 수는 상대적으로 적기 때문입니다.

각 프로젝트는 서로 다른 전략에서 더 나은 성능을 보일 수 있으며, 반대로 이 새로운 접근 방식이 특정 워크플로에서 제대로 작동하지 않을 가능성도 있습니다. 이를 해결하기 위해 TypeScript 3.8에서는 `node_modules` 필드가 새롭게 도입되었습니다. 이 필드를 사용하면 파일이나 디렉토리를 추적할 때 어떤 감시 전략을 사용할지 compiler/language service에 지정할 수 있습니다.
Loading