Translation 3 files to Ko #1040
Merged
Merged
Conversation
dvlprsh
reviewed
Sep 4, 2020
| - npm 사용하기(Node.js 패키지 매니저) | ||
| - Visual Studio TypeScript 플러그인 설치하기 | ||
|
|
||
| Visual Studio 2017과 Visual Studio 2015 Update 3에는 TypeScript가 기본적으로 포함되어있습니다. |
Contributor
There was a problem hiding this comment.
Suggested change
| Visual Studio 2017과 Visual Studio 2015 Update 3에는 TypeScript가 기본적으로 포함되어있습니다. | |
| Visual Studio 2017과 Visual Studio 2015 Update 3에는 TypeScript가 기본적으로 포함되어 있습니다. |
| Visual Studio 2017과 Visual Studio 2015 Update 3에는 TypeScript가 기본적으로 포함되어있습니다. | ||
| 만약 Visual Studio로 TypeScript를 다운받지 않았다면, [여기서 다운로드받으세요](/download). | ||
|
|
||
| npm 사용자들: |
Contributor
There was a problem hiding this comment.
Suggested change
| npm 사용자들: | |
| npm 사용자의 경우: |
| - Visual Studio TypeScript 플러그인 설치하기 | ||
|
|
||
| Visual Studio 2017과 Visual Studio 2015 Update 3에는 TypeScript가 기본적으로 포함되어있습니다. | ||
| 만약 Visual Studio로 TypeScript를 다운받지 않았다면, [여기서 다운로드받으세요](/download). |
Contributor
There was a problem hiding this comment.
[제안]
Suggested change
| 만약 Visual Studio로 TypeScript를 다운받지 않았다면, [여기서 다운로드받으세요](/download). | |
| 만약 Visual Studio로 TypeScript를 설치하지 않았다면, [여기서 다운로드하세요](/download). |
dvlprsh
reviewed
Sep 4, 2020
|
|
||
| #### 타입 검사와 d.ts 파일 생성 (Type Checking and d.ts file generation) | ||
|
|
||
| Babel 사용의 단점은 TS를 JS로 전환하는 동안 타입 검사를 할 수 없다는 점입니다. 즉, 에디터에서 타입 오류를 잡지 못하고 상용 코드에 포함될 수도 있단 뜻입니다. |
Contributor
There was a problem hiding this comment.
[제안]
Suggested change
| Babel 사용의 단점은 TS를 JS로 전환하는 동안 타입 검사를 할 수 없다는 점입니다. 즉, 에디터에서 타입 오류를 잡지 못하고 상용 코드에 포함될 수도 있단 뜻입니다. | |
| Babel 사용의 단점은 TS를 JS로 전환하는 동안 타입 검사를 할 수 없다는 점입니다. 즉, 에디터에서 잡지 못한 타입 오류가 프로덕션 코드에 포함될 수도 있다는 뜻입니다. |
Contributor
Author
There was a problem hiding this comment.
훨씬 더 깔끔해진 것 같아요 :)
bumkeyy
reviewed
Sep 10, 2020
| - 빌드 출력 결과와 소스 입력 파일이 거의 비슷한가요? `tsc`를 사용하세요. | ||
| - 여러 잠재적인 결과물을 내는 빌드 파이프라인이 필요하신가요? `babel`로 트랜스파일링을 하고, `tsc`로 타입을 검사하세요. | ||
|
|
||
| ## 트랜스파일링은 Babel, 타입은 `tsc` (Babel for transpiling, `tsc` for types) |
Contributor
There was a problem hiding this comment.
Suggested change
| ## 트랜스파일링은 Babel, 타입은 `tsc` (Babel for transpiling, `tsc` for types) | |
| ## 트랜스파일링은 Babel, 타입은 `tsc` |
Contributor
There was a problem hiding this comment.
현재 레포에서는 다른 국가들의 번역 규칙에 따라 원문을 삽입하지 않기로 했습니다 :)
bumkeyy
reviewed
Sep 10, 2020
|
|
||
| Babel은 TypeScript를 지원하기 때문에, 기존 빌드 파이프라인으로 작업할 수 있고 Babel이 코드 타입을 검사하지 않기 때문에 JS 출력 시간이 더 빨라질 수 있습니다. | ||
|
|
||
| #### 타입 검사와 d.ts 파일 생성 (Type Checking and d.ts file generation) |
Contributor
There was a problem hiding this comment.
Suggested change
| #### 타입 검사와 d.ts 파일 생성 (Type Checking and d.ts file generation) | |
| #### 타입 검사와 d.ts 파일 생성 |
Contributor
|
고생하셨습니다 👍 |
Contributor
|
LGTM |
Contributor
|
Merging because @bumkeyy is a code-owner of all the changes - thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
en:
번역 리뷰 요청합니다 : @yeonjuan @guyeol @dvlprsh
ref: #910