-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[PT-BR] translating 'rootDir.md' tsconfig-reference file #826
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
orta
merged 2 commits into
microsoft:v2
from
LeonardoGrtt:leonardogrtt-ptbr-translation
Jul 31, 2020
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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,66 @@ | ||
--- | ||
display: "Diretório Raiz" | ||
oneline: "Define o diretório raiz dentre os seus arquivos fonte" | ||
--- | ||
|
||
**Padrão**: O caminho mais longo em comum entre todos os arquivos que não são de declaração. Se `composite` está definido, o padrão será o diretório contendo o arquivo `tsconfig.json`. | ||
|
||
Quando TypeScript compila os arquivos, ele mantém a mesma estrutura de diretórios no diretório de saída como ela existe no diretório de entrada. | ||
LeonardoGrtt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Por exemplo, suponhamos que você tenha alguns arquivos de entrada: | ||
|
||
``` | ||
MeuProj | ||
├── tsconfig.json | ||
├── core | ||
│ ├── a.ts | ||
│ ├── b.ts | ||
│ ├── sub | ||
│ │ ├── c.ts | ||
├── types.d.ts | ||
``` | ||
|
||
O valor inferido para `rootDir` é o caminho mais longo em comum entre todos os arquivos que não são de declaração, que neste caso é `core/`. | ||
|
||
Se o seu `outDir` fosse `dist`, TypeScript escreveria esta árvore: | ||
|
||
``` | ||
MeuProj | ||
├── dist | ||
│ ├── a.ts | ||
│ ├── b.ts | ||
│ ├── sub | ||
│ │ ├── c.ts | ||
``` | ||
|
||
Contudo, você pode ter a intenção de que `core` seja parte da estrutura do diretório de saída. | ||
Ao definir `rootDir: "."` em `tsconfig.json`, TypeScript escreveria esta árvore: | ||
|
||
``` | ||
MeuProj | ||
├── dist | ||
│ ├── core | ||
│ │ ├── a.js | ||
│ │ ├── b.js | ||
│ │ ├── sub | ||
│ │ │ ├── c.js | ||
``` | ||
|
||
Importante, a opção `rootDir` **não altera quais arquivos se tornam parte da compilação**. | ||
Pois não tem interação com `include`, `exclude`, ou com a propriedade `files` em `tsconfig.json`. | ||
LeonardoGrtt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Note que TypeScript nunca irá escrever um arquivo de saída em um diretório fora de `outDir`, e nunca irá pular a emissão de um arquivo. | ||
Por este motivo, `rootDir` também impõe que todos arquivos que precisam ser emitidos estejam abaixo do caminho `rootDir`. | ||
|
||
Por exemplo, digamos que você tivesse esta árvore: | ||
|
||
``` | ||
MeuProj | ||
├── tsconfig.json | ||
├── core | ||
│ ├── a.ts | ||
│ ├── b.ts | ||
├── ajudantes.ts | ||
``` | ||
|
||
Seria um erro especificar `rootDir` como `core` _e_ `include` como `*`, porque está se criando um arquivo (`ajudantes.ts`) que precisaria ser emitido _fora_ do `outDir` (i.e. `../ajudantes.js`). | ||
LeonardoGrtt marked this conversation as resolved.
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.