-
Notifications
You must be signed in to change notification settings - Fork 132
Translate 3 files to ko - out, outDir, outFile #41
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
bc8e56e
Feature out, outDir, outFile in KO
danielsychoo 7a02a01
Update docs/tsconfig/ko/options/outDir.md
danielsychoo c62a830
Update docs/tsconfig/ko/options/outDir.md
danielsychoo 734c0e3
Update docs/tsconfig/ko/options/outDir.md
danielsychoo 1236d0d
Update docs/tsconfig/ko/options/outFile.md
danielsychoo a7466f4
Update docs/tsconfig/ko/options/outFile.md
danielsychoo da27f80
Update docs/tsconfig/ko/options/out.md
danielsychoo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| display: "Out" | ||
| oneline: "Deprecated setting. Use `outFile` instead." | ||
| --- | ||
|
|
||
| 대신에 [outFile](#outFile) 을 사용하세요. | ||
|
|
||
| `out` 옵션은 예측 불가능하거나 일관되지 않은 방식으로 최종 파일 위치를 계산합니다. | ||
| 이 옵션은 이전 버전과의 호환성을 위해 유지될 뿐 사용되지 않습니다. | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| --- | ||
| display: "Out Dir" | ||
| oneline: "Specify an output folder for all emitted files." | ||
| --- | ||
|
|
||
| 만일 지정하면, `.js` (이 외에도 `.d.ts`, `.js.map`, 등.) 파일이 지정한 디렉토리로 배출됩니다. | ||
danielsychoo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 원본 파일의 디렉토리 구조는 보존됩니다; 계산된 루트가 의도한 루트가 아닌경우 [rootDir](#rootDir) 을 보세요. | ||
danielsychoo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 만일 지정하지 않으면, `.js` 파일은 `.ts` 파일이 생성된 곳과 동일한 디렉토리에 방출됩니다: | ||
danielsychoo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ```sh | ||
| $ tsc | ||
|
|
||
| example | ||
| ├── index.js | ||
| └── index.ts | ||
| ``` | ||
|
|
||
| 다음과 같이 `tsconfig.json` 을 작성할 경우: | ||
|
|
||
| ```json tsconfig | ||
| { | ||
| "compilerOptions": { | ||
| "outDir": "dist" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| 이러한 설정으로 `tsc`를 실행하면 파일이 지정한 `dist` 폴더로 이동합니다: | ||
|
|
||
| ```sh | ||
| $ tsc | ||
|
|
||
| example | ||
| ├── dist | ||
| │ └── index.js | ||
| ├── index.ts | ||
| └── tsconfig.json | ||
| ``` | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| --- | ||
| display: "Out File" | ||
| oneline: "Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output." | ||
| --- | ||
|
|
||
| 만일 지정하면, 모든 _전역_ (비모듈) 파일이 지정된 단일 출력 파일에 연결됩니다. | ||
|
|
||
| 만일 `module` 이 `system` 또는 `amd` 일 경우, 모든 모듈 파일도 모든 전역 컨텐츠 뒤에 이 파일에 연결됩니다. | ||
|
|
||
| 참고: `outFile` 은 `module` 이 `None` 이거나, `System`, `AMD` 가 아니면 사용할 수 없습니다. | ||
danielsychoo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 이 옵션은 bundle CommonJS 또는 ES6 모듈에 사용할 수 _없습니다_. | ||
danielsychoo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.