-
Notifications
You must be signed in to change notification settings - Fork 129
[PT-BR] explainFiles.md #45
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
[PT-BR] explainFiles.md #45
Conversation
Thanks for the PR! This section of the codebase is owned by @khaosdoctor and @danilofuchs - if they write a comment saying "LGTM" then it will be merged. |
Translation of explainFiles.mddisplay: "explainFiles" oneline: "Prints the files read during compilation along with the reason for their inclusion."Prints the names of files that TypeScript recognizes as part of your project and the reason why they are parts of the build. For example, in this project with only a simple file example
├── index.ts
├── package.json
└── tsconfig.json Using a {
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"explainFiles": true
}
} Running TypeScript in this folder will have an output similar to this:
The output above shows:
This option is intended to debug how a file has become part of your build. |
- The initial lib.d.ts lookup based on [`target`](#include), and the chain of `.d.ts` files which are referenced | ||
- The `index.ts` file located via the default pattern of [`include`](#include) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you missed this bit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, translated now!
LGTM |
Merging because @khaosdoctor is a code-owner of all the changes - thanks! |
@khaosdoctor @danilofuchs