From 34c0e9f97550e6657905d2d4c97d53721c72277f Mon Sep 17 00:00:00 2001 From: Yungun An Date: Tue, 22 Oct 2024 14:36:26 +0900 Subject: [PATCH] translate 'Watch_and_Build_Modes_6250.md' en->ko --- .../tsconfig/ko/categories/Watch_and_Build_Modes_6250.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/tsconfig/ko/categories/Watch_and_Build_Modes_6250.md diff --git a/docs/tsconfig/ko/categories/Watch_and_Build_Modes_6250.md b/docs/tsconfig/ko/categories/Watch_and_Build_Modes_6250.md new file mode 100644 index 00000000..1f8ca6b0 --- /dev/null +++ b/docs/tsconfig/ko/categories/Watch_and_Build_Modes_6250.md @@ -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에 지정할 수 있습니다. \ No newline at end of file