René's URL Explorer Experiment


Title: Update descriptions for all compiler options by orta · Pull Request #44409 · microsoft/TypeScript · GitHub

Open Graph Title: Update descriptions for all compiler options by orta · Pull Request #44409 · microsoft/TypeScript

X Title: Update descriptions for all compiler options by orta · Pull Request #44409 · microsoft/TypeScript

Description: Back at the end of 2020 we had a series of meetings going through all the tsconfig options, revising their descriptions and making them all consistent. They were then moved into the website, with the goal of bringing them upstream later. Today is that later, heh. Overview of the new descriptions: ❯ node built/local/tsc.js --help --all Version 4.4.0-dev Syntax: tsc [options] [file...] Examples: tsc hello.ts tsc --outFile file.js file.ts tsc @args.txt tsc --build tsconfig.json Options: --all Show all compiler options. --allowJs Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. --allowSyntheticDefaultImports Allow 'import x from y' when a module doesn't have a default export. --allowUmdGlobalAccess Allow accessing UMD globals from modules. --allowUnreachableCode Disable error reporting for unreachable code. --allowUnusedLabels Disable error reporting for unused labels. --alwaysStrict Ensure 'use strict' is always emitted. --assumeChangesOnlyAffectDirectDependencies Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it. --baseUrl Specify the base directory to resolve non-relative module names. -b, --build Build one or more projects and their dependencies, if out of date --charset No longer supported. In early versions, manually set the text encoding for reading files. --checkJs Enable error reporting in type-checked JavaScript files. --composite Enable constraints that allow a TypeScript project to be used with project references. -d, --declaration Generate .d.ts files from TypeScript and JavaScript files in your project. --declarationDir DIRECTORY Specify the output directory for generated declaration files. --declarationMap Create sourcemaps for d.ts files. --diagnostics Output compiler performance information after building. --disableReferencedProjectLoad Reduce the number of projects loaded automatically by TypeScript. --disableSizeLimit Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server. --disableSolutionSearching Opt a project out of multi-project reference checking when editing. --disableSourceOfProjectReferenceRedirect Disable preferring source files instead of declaration files when referencing composite projects --downlevelIteration Emit more compliant, but verbose and less performant JavaScript for iteration. --emitBOM Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. --emitDeclarationOnly Only output d.ts files and not JavaScript files. --emitDecoratorMetadata Emit design-type metadata for decorated declarations in source files. --esModuleInterop Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. --experimentalDecorators Enable experimental support for TC39 stage 2 draft decorators. --explainFiles Print files read during the compilation including why it was included. --extendedDiagnostics Output more detailed compiler performance information after building. --forceConsistentCasingInFileNames Ensure that casing is correct in imports. --generateCpuProfile FILE OR DIRECTORY Emit a v8 CPU profile of the compiler run for debugging. --generateTrace DIRECTORY Generates an event trace and a list of types. -h, --help Print this message. --importHelpers Allow importing helper functions from tslib once per project, instead of including them per-file. --importsNotUsedAsValues Specify emit/checking behavior for imports that are only used for types -i, --incremental Enable incremental compilation --init Initializes a TypeScript project and creates a tsconfig.json file. --inlineSourceMap Include sourcemap files inside the emitted JavaScript. --inlineSources Include source code in the sourcemaps inside the emitted JavaScript. --isolatedModules Ensure that each file can be safely transpiled without relying on other imports. --jsx KIND Specify what JSX code is generated. --jsxFactory Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' --jsxFragmentFactory Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. --jsxImportSource Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx*`.` --keyofStringsOnly Make keyof only return strings instead of string, numbers or symbols. Legacy option. --lib Specify a set of bundled library declaration files that describe the target runtime environment. 'es5' 'es6' 'es2015' 'es7' 'es2016' 'es2017' 'es2018' 'es2019' 'es2020' 'es2021' 'esnext' 'dom' 'dom.iterable' 'webworker' 'webworker.importscripts' 'webworker.iterable' 'scripthost' 'es2015.core' 'es2015.collection' 'es2015.generator' 'es2015.iterable' 'es2015.promise' 'es2015.proxy' 'es2015.reflect' 'es2015.symbol' 'es2015.symbol.wellknown' 'es2016.array.include' 'es2017.object' 'es2017.sharedmemory' 'es2017.string' 'es2017.intl' 'es2017.typedarrays' 'es2018.asyncgenerator' 'es2018.asynciterable' 'es2018.intl' 'es2018.promise' 'es2018.regexp' 'es2019.array' 'es2019.object' 'es2019.string' 'es2019.symbol' 'es2020.bigint' 'es2020.promise' 'es2020.sharedmemory' 'es2020.string' 'es2020.symbol.wellknown' 'es2020.intl' 'es2021.promise' 'es2021.string' 'es2021.weakref' 'esnext.array' 'esnext.symbol' 'esnext.asynciterable' 'esnext.intl' 'esnext.bigint' 'esnext.string' 'esnext.promise' 'esnext.weakref' --listEmittedFiles Print the names of emitted files after a compilation. --listFiles Print all of the files read during the compilation. --listFilesOnly Print names of files that are part of the compilation and then stop processing. --locale Set the language of the messaging from TypeScript. This does not affect emit. --mapRoot LOCATION Specify the location where debugger should locate map files instead of generated locations. --maxNodeModuleJsDepth Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. -m KIND, --module KIND Specify what module code is generated. --moduleResolution STRATEGY Specify how TypeScript looks up a file from a given module specifier. --newLine NEWLINE Set the newline character for emitting files. --noEmit Disable emitting file from a compilation. --noEmitHelpers Disable generating custom helper functions like `__extends` in compiled output. --noEmitOnError Disable emitting files if any type checking errors are reported. --noErrorTruncation Disable truncating types in error messages. --noFallthroughCasesInSwitch Enable error reporting for fallthrough cases in switch statements. --noImplicitAny Enable error reporting for expressions and declarations with an implied `any` type.. --noImplicitOverride Add `undefined` to a type when accessed using an index. --noImplicitReturns Enable error reporting for codepaths that do not explicitly return in a function. --noImplicitThis Enable error reporting when `this` is given the type `any`. --noImplicitUseStrict Disable adding 'use strict' directives in emitted JavaScript files. --noLib Disable including any library files, including the default lib.d.ts. --noPropertyAccessFromIndexSignature Enforces using indexed accessors for keys declared using an indexed type --noResolve Disallow `import`s, `require`s or ``s from expanding the number of files TypeScript should add to a project. --noStrictGenericChecks Disable strict checking of generic signatures in function types. --noUncheckedIndexedAccess Include 'undefined' in index signature results --noUnusedLocals Enable error reporting when a local variables aren't read. --noUnusedParameters Raise an error when a function parameter isn't read --out FILE Deprecated setting. Use `outFile` instead. --outDir DIRECTORY Specify an output folder for all emitted files. --outFile FILE 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. --paths Specify a set of entries that re-map imports to additional lookup locations. --plugins List of language service plugins. --preserveConstEnums Disable erasing `const enum` declarations in generated code. --preserveSymlinks Disable resolving symlinks to their realpath. This correlates to the same flag in node. --preserveWatchOutput Disable wiping the console in watch mode --pretty Enable color and formatting in output to make compiler errors easier to read -p FILE OR DIRECTORY, --project FILE OR DIRECTORY Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'. --reactNamespace Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit. --removeComments Disable emitting comments. --resolveJsonModule Enable importing .json files --rootDir LOCATION Specify the root folder within your source files. --rootDirs Allow multiple folders to be treated as one when resolving modules. --showConfig Print the final configuration instead of building. --skipDefaultLibCheck Skip type checking .d.ts files that are included with TypeScript. --skipLibCheck Skip type checking all .d.ts files. --sourceMap Create source map files for emitted JavaScript files. --sourceRoot LOCATION Specify the root path for debuggers to find the reference source code. --strict Enable all strict type-checking options. --strictBindCallApply Check that the arguments for `bind`, `call`, and `apply` methods match the original function. --strictFunctionTypes When assigning functions, check to ensure parameters and the return values are subtype-compatible. --strictNullChecks When type checking, take into account `null` and `undefined`. --strictOptionalProperties Enable strict checking of optional properties. --strictPropertyInitialization Check for class properties that are declared but not set in the constructor. --stripInternal Disable emitting declarations that have `@internal` in their JSDoc comments. --suppressExcessPropertyErrors Disable reporting of excess property errors during the creation of object literals. --suppressImplicitAnyIndexErrors Suppress `noImplicitAny` errors when indexing objects that lack index signatures. -t VERSION, --target VERSION Set the JavaScript language version for emitted JavaScript and include compatible library declarations. --traceResolution Log paths used during the `moduleResolution` process. --tsBuildInfoFile FILE Specify the folder for .tsbuildinfo incremental compilation files. --typeRoots Specify multiple folders that act like `./node_modules/@types`. --types Specify type package names to be included without being referenced in a source file. --useDefineForClassFields Emit ECMAScript-standard-compliant class fields. -v, --version Print the compiler's version. -w, --watch Watch input files. @ Insert command line options and files from a file.

Open Graph Description: Back at the end of 2020 we had a series of meetings going through all the tsconfig options, revising their descriptions and making them all consistent. They were then moved into the website, with t...

X Description: Back at the end of 2020 we had a series of meetings going through all the tsconfig options, revising their descriptions and making them all consistent. They were then moved into the website, with t...

Opengraph URL: https://github.com/microsoft/TypeScript/pull/44409

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/commits/:range(.:format)
route-controllerpull_requests
route-actioncommits
fetch-noncev2:c667a064-d37f-b3a0-5aa1-d912457b920e
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD3BE:242DB0:31890F:443B3B:69975615
html-safe-noncea86a8fe14658159e5d1f185e107fa86495e6a4f8c205dd227341b90c53bf1f87
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEM0JFOjI0MkRCMDozMTg5MEY6NDQzQjNCOjY5OTc1NjE1IiwidmlzaXRvcl9pZCI6IjM4MTgyMjY0NTYxOTY1MDMwNjIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac9e0870548dd8b4b2aa6ae55327f6cdd625cfa5d15bbe941e7ff553090a0f884f
hovercard-subject-tagpull_request:660915597
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/commits
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
twitter:imagehttps://avatars.githubusercontent.com/u/49038?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/49038?s=400&v=4
og:image:altBack at the end of 2020 we had a series of meetings going through all the tsconfig options, revising their descriptions and making them all consistent. They were then moved into the website, with t...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Nonec2f6b9675e9141deef3eda21e5cb896d461bd4d25aeaeeba804502ef0e8d01f2
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/microsoft/TypeScript git https://github.com/microsoft/TypeScript.git
octolytics-dimension-user_id6154722
octolytics-dimension-user_loginmicrosoft
octolytics-dimension-repository_id20929025
octolytics-dimension-repository_nwomicrosoft/TypeScript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id20929025
octolytics-dimension-repository_network_root_nwomicrosoft/TypeScript
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release06ceed63f0d4941788d6c52a00d38ad77b6eaf89
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fpull%2F44409%2Fcommits%2Faa294b9ffd93b628fd7e03f531b3c598b3f03a4d
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2FTypeScript%2Fpull%2F44409%2Fcommits%2Faa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fcommits&source=header-repo&source_repo=microsoft%2FTypeScript
Reloadhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Reloadhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Reloadhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
microsoft https://github.com/microsoft
TypeScripthttps://github.com/microsoft/TypeScript
Notifications https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Fork 13.2k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Star 108k https://github.com/login?return_to=%2Fmicrosoft%2FTypeScript
Code https://github.com/microsoft/TypeScript
Issues 5k https://github.com/microsoft/TypeScript/issues
Pull requests 493 https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects 1 https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security 0 https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
Code https://github.com/microsoft/TypeScript
Issues https://github.com/microsoft/TypeScript/issues
Pull requests https://github.com/microsoft/TypeScript/pulls
Actions https://github.com/microsoft/TypeScript/actions
Projects https://github.com/microsoft/TypeScript/projects
Models https://github.com/microsoft/TypeScript/models
Wiki https://github.com/microsoft/TypeScript/wiki
Security https://github.com/microsoft/TypeScript/security
Insights https://github.com/microsoft/TypeScript/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fmicrosoft%2FTypeScript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fmicrosoft%2FTypeScript%2Fissues%2Fnew%2Fchoose
ortahttps://github.com/orta
microsoft:mainhttps://github.com/microsoft/TypeScript/tree/main
orta:new_descriptionshttps://github.com/orta/TypeScript/tree/new_descriptions
Conversation 2 https://github.com/microsoft/TypeScript/pull/44409
Commits 3 https://github.com/microsoft/TypeScript/pull/44409/commits
Checks 0 https://github.com/microsoft/TypeScript/pull/44409/checks
Files changed https://github.com/microsoft/TypeScript/pull/44409/files
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Update descriptions for all compiler options https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#top
Show all changes 3 commits https://github.com/microsoft/TypeScript/pull/44409/files
b3d975e Add new descriptions to compiler options orta Jun 3, 2021 https://github.com/microsoft/TypeScript/pull/44409/commits/b3d975ed87bb52a0b0139481bc632164217e50bc
aa294b9 Update baselines orta Jun 3, 2021 https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
b233640 Rebase orta Jun 15, 2021 https://github.com/microsoft/TypeScript/pull/44409/commits/b23364006ea555e2b552d9b00bfc3f138aa161d0
Clear filters https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-1c5993f1b89f617548fb8e619b6bc87a564f3ee0b75e2de4cd4d6cc3ea4ace9b
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-c5bd8e8f637f6ad326615a7944c7375efb96ecfe6b9217831f102a227aa4473e
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-61c56052f2d64425ad76ca6d82ef2a41a09da785df63a5720e679b658007e24c
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-2caccf19118cf776967263b9d71450fae6b801801d385226646acbad1a4a5156
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-2b6413b83a1a156d8551b068f56407787e14649458f39e96ca0263f63e8fa992
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-35c94e26b13657d391a76ce29f24834a7cdeb6b9d3ec25853b7c4a9140556926
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-39216442bb272262c0ea5f2e0262e99247c5d46b9905cbe38292657cd3c4190b
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-28a541b7b85011e92edebe7cc14c57f1096e22f6584a89bc81e28a3c75fc8782
tsconfig.json https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-3a00a7d4a29292a1c21e85368883f359ddbc7f09b17a2405226896895d035c83
show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-31f9208473ae029ea215b594f79a541e6564db0b4be9bb0d814389c9a82b1d46
declarationDir-is-specified.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-f6e01a764ae954297f06aac13d11a38abdd7d872dc6ab3d42febb5d4677a7e16
when-outDir-and-declarationDir-is-specified.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-b1b6c2dece58be96cf36120d57fcd43808989cbfce8be3f73f1400d46fe94b9c
when-outDir-is-specified.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-f870b17e32cb0a89c8dbc32338f426e819f13890937516f444301431523b5ff1
with-outFile.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-74c5942dee033f04c9f3f34be958dd6f2d72326912ee98fc317911a76988fb46
without-outDir-or-outFile-is-specified-with-declaration-enabled.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-d58ce194ff75fd064e7733e7286b2fb1d4770bc1c68978228ba7e9d7f925e725
without-outDir-or-outFile-is-specified.js https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-55231414f9aa76a514cb806ec6361bd93ae4d8c148e1e4f9dd6e864bdc8ea62e
Prev https://github.com/microsoft/TypeScript/pull/44409/commits/b3d975ed87bb52a0b0139481bc632164217e50bc
Next https://github.com/microsoft/TypeScript/pull/44409/commits/b23364006ea555e2b552d9b00bfc3f138aa161d0
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
https://github.com/orta
ortahttps://github.com/microsoft/TypeScript/commits?author=orta
tests/baselines/reference/tsConfig/Default initialized TSConfig/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-1c5993f1b89f617548fb8e619b6bc87a564f3ee0b75e2de4cd4d6cc3ea4ace9b
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Default%20initialized%20TSConfig/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
tests/baselines/reference/tsConfig/Initialized TSConfig with advanced options/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-c5bd8e8f637f6ad326615a7944c7375efb96ecfe6b9217831f102a227aa4473e
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20advanced%20options/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...reference/tsConfig/Initialized TSConfig with boolean value compiler options/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-61c56052f2d64425ad76ca6d82ef2a41a09da785df63a5720e679b658007e24c
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20boolean%20value%20compiler%20options/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...es/reference/tsConfig/Initialized TSConfig with enum value compiler options/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-2caccf19118cf776967263b9d71450fae6b801801d385226646acbad1a4a5156
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20enum%20value%20compiler%20options/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
tests/baselines/reference/tsConfig/Initialized TSConfig with files options/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-2b6413b83a1a156d8551b068f56407787e14649458f39e96ca0263f63e8fa992
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20files%20options/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...eference/tsConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-35c94e26b13657d391a76ce29f24834a7cdeb6b9d3ec25853b7c4a9140556926
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20incorrect%20compiler%20option%20value/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...ines/reference/tsConfig/Initialized TSConfig with incorrect compiler option/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-39216442bb272262c0ea5f2e0262e99247c5d46b9905cbe38292657cd3c4190b
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20incorrect%20compiler%20option/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...ce/tsConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-28a541b7b85011e92edebe7cc14c57f1096e22f6584a89bc81e28a3c75fc8782
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20list%20compiler%20options%20with%20enum%20value/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...aselines/reference/tsConfig/Initialized TSConfig with list compiler options/tsconfig.jsonhttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-3a00a7d4a29292a1c21e85368883f359ddbc7f09b17a2405226896895d035c83
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsConfig/Initialized%20TSConfig%20with%20list%20compiler%20options/tsconfig.json
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
...nWithoutArgs/initial-build/show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.jshttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-31f9208473ae029ea215b594f79a541e6564db0b4be9bb0d814389c9a82b1d46
View file https://github.com/orta/TypeScript/blob/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d/tests/baselines/reference/tsc/runWithoutArgs/initial-build/show-help-with-ExitStatus.DiagnosticsPresent_OutputsSkipped.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/microsoft/TypeScript/pull/44409/commits/{{ revealButtonHref }}
https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-31f9208473ae029ea215b594f79a541e6564db0b4be9bb0d814389c9a82b1d46
https://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d#diff-31f9208473ae029ea215b594f79a541e6564db0b4be9bb0d814389c9a82b1d46
Please reload this pagehttps://github.com/microsoft/TypeScript/pull/44409/commits/aa294b9ffd93b628fd7e03f531b3c598b3f03a4d
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.