├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── critical-issue.md ├── codeql │ └── codeql-configuration.yml └── workflows │ ├── CI.yml │ ├── close-preview.yml │ ├── codeql.yml │ ├── deploy-preview.yml │ ├── deploy-prod-static.yml │ ├── deploy-prod.yml │ ├── keepalive.yml │ ├── update_teams.yml │ ├── v2-merged-staging.yml │ └── weekly-stats.yml ├── .gitignore ├── .huskyrc.js ├── .prettierignore ├── .prettierrc ├── .vscode ├── done.aiff ├── extensions.json ├── launch.json └── settings.json ├── .yarn ├── .gitattributes ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ ├── plugin-version.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.2.3.cjs ├── .yarnrc.yml ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── dangerfile.ts ├── docs ├── Converting Twoslash Code Samples.md ├── Deprecating a page.md ├── How i18n Works For Site Copy.md ├── New TypeScript Version.md ├── README.md ├── Setup Troubleshooting.md ├── Something Went Wrong.md └── User Flows.md ├── package.json ├── packages ├── ata │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── src │ │ ├── apis.ts │ │ ├── edgeCases.ts │ │ ├── index.ts │ │ └── userFacingTypes.d.ts │ ├── tests │ │ ├── ata.spec.ts │ │ └── edgeCases.spec.ts │ └── tsconfig.json ├── community-meta │ ├── README.md │ ├── generated │ │ └── .gitignore │ ├── package.json │ └── scripts │ │ ├── generateRichMeetupData.js │ │ └── meetups.js ├── create-typescript-playground-plugin │ ├── .npmignore │ ├── README.md │ ├── index.js │ ├── package.json │ └── template │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── scripts │ │ └── getDTS.js │ │ ├── src │ │ ├── index.ts │ │ └── vendor │ │ │ └── utils.ts │ │ └── tsconfig.json ├── documentation │ ├── .gitignore │ ├── copy │ │ └── en │ │ │ ├── Nightly Builds.md │ │ │ ├── declaration-files │ │ │ ├── By Example.md │ │ │ ├── Consumption.md │ │ │ ├── Deep Dive.md │ │ │ ├── Do's and Don'ts.md │ │ │ ├── Introduction.md │ │ │ ├── Library Structures.md │ │ │ ├── Publishing.md │ │ │ ├── Templates.md │ │ │ └── templates │ │ │ │ ├── global-modifying-module.d.ts.md │ │ │ │ ├── global-plugin.d.ts.md │ │ │ │ ├── global.d.ts.md │ │ │ │ ├── module-class.d.ts.md │ │ │ │ ├── module-function.d.ts.md │ │ │ │ ├── module-plugin.d.ts.md │ │ │ │ └── module.d.ts.md │ │ │ ├── get-started │ │ │ ├── TS for Functional Programmers.md │ │ │ ├── TS for JS Programmers.md │ │ │ ├── TS for OOPers.md │ │ │ └── TS for the New Programmer.md │ │ │ ├── handbook-v1 │ │ │ ├── Basic Types.md │ │ │ ├── Classes.md │ │ │ ├── Functions.md │ │ │ ├── Generics.md │ │ │ ├── Interfaces.md │ │ │ ├── Literal Types.md │ │ │ └── Unions and Intersections.md │ │ │ ├── handbook-v2 │ │ │ ├── Basics.md │ │ │ ├── Classes.md │ │ │ ├── Everyday Types.md │ │ │ ├── Modules.md │ │ │ ├── More on Functions.md │ │ │ ├── Narrowing.md │ │ │ ├── Object Types.md │ │ │ ├── The Handbook.md │ │ │ ├── Type Declarations.md │ │ │ ├── Type Manipulation │ │ │ │ ├── Conditional Types.md │ │ │ │ ├── Generics.md │ │ │ │ ├── Indexed Access Types.md │ │ │ │ ├── Keyof Type Operator.md │ │ │ │ ├── Mapped Types.md │ │ │ │ ├── Template Literal Types.md │ │ │ │ ├── Typeof Type Operator.md │ │ │ │ └── _Creating Types from Types.md │ │ │ └── Understanding Errors.md │ │ │ ├── javascript │ │ │ ├── Creating DTS files From JS.md │ │ │ ├── Intro to JS with TS.md │ │ │ ├── JSDoc Reference.md │ │ │ └── Type Checking JavaScript Files.md │ │ │ ├── modules-reference │ │ │ ├── Introduction.md │ │ │ ├── Reference.md │ │ │ ├── Theory.md │ │ │ ├── appendices │ │ │ │ └── ESM-CJS-Interop.md │ │ │ ├── diagrams │ │ │ │ ├── README │ │ │ │ ├── declaration-files.svg │ │ │ │ ├── esm-cjs-interop.md │ │ │ │ ├── esm-cjs-interop.mmd-1.svg │ │ │ │ ├── esm-cjs-interop.mmd-2.svg │ │ │ │ ├── theory.md │ │ │ │ ├── theory.md-1.svg │ │ │ │ ├── theory.md-2.svg │ │ │ │ ├── theory.md-3.svg │ │ │ │ └── theory.md-4.svg │ │ │ └── guides │ │ │ │ └── Choosing Compiler Options.md │ │ │ ├── project-config │ │ │ ├── Compiler Options in MSBuild.md │ │ │ ├── Compiler Options.md │ │ │ ├── Configuring Watch.md │ │ │ ├── Integrating with Build Tools.md │ │ │ ├── Project References.md │ │ │ └── tsconfig.json.md │ │ │ ├── reference │ │ │ ├── Advanced Types.md │ │ │ ├── Declaration Merging.md │ │ │ ├── Decorators.md │ │ │ ├── Enums.md │ │ │ ├── Iterators and Generators.md │ │ │ ├── JSX.md │ │ │ ├── Mixins.md │ │ │ ├── Namespaces and Modules.md │ │ │ ├── Namespaces.md │ │ │ ├── Symbols.md │ │ │ ├── Triple-Slash Directives.md │ │ │ ├── Type Compatibility.md │ │ │ ├── Type Inference.md │ │ │ ├── Utility Types.md │ │ │ └── Variable Declarations.md │ │ │ ├── release-notes │ │ │ ├── TypeScript 1.1.md │ │ │ ├── TypeScript 1.3.md │ │ │ ├── TypeScript 1.4.md │ │ │ ├── TypeScript 1.5.md │ │ │ ├── TypeScript 1.6.md │ │ │ ├── TypeScript 1.7.md │ │ │ ├── TypeScript 1.8.md │ │ │ ├── TypeScript 2.0.md │ │ │ ├── TypeScript 2.1.md │ │ │ ├── TypeScript 2.2.md │ │ │ ├── TypeScript 2.3.md │ │ │ ├── TypeScript 2.4.md │ │ │ ├── TypeScript 2.5.md │ │ │ ├── TypeScript 2.6.md │ │ │ ├── TypeScript 2.7.md │ │ │ ├── TypeScript 2.8.md │ │ │ ├── TypeScript 2.9.md │ │ │ ├── TypeScript 3.0.md │ │ │ ├── TypeScript 3.1.md │ │ │ ├── TypeScript 3.2.md │ │ │ ├── TypeScript 3.3.md │ │ │ ├── TypeScript 3.4.md │ │ │ ├── TypeScript 3.5.md │ │ │ ├── TypeScript 3.6.md │ │ │ ├── TypeScript 3.7.md │ │ │ ├── TypeScript 3.8.md │ │ │ ├── TypeScript 3.9.md │ │ │ ├── TypeScript 4.0.md │ │ │ ├── TypeScript 4.1.md │ │ │ ├── TypeScript 4.2.md │ │ │ ├── TypeScript 4.3.md │ │ │ ├── TypeScript 4.4.md │ │ │ ├── TypeScript 4.5.md │ │ │ ├── TypeScript 4.6.md │ │ │ ├── TypeScript 4.7.md │ │ │ ├── TypeScript 4.8.md │ │ │ ├── TypeScript 4.9.md │ │ │ ├── TypeScript 5.0.md │ │ │ ├── TypeScript 5.1.md │ │ │ ├── TypeScript 5.2.md │ │ │ └── TypeScript 5.3.md │ │ │ └── tutorials │ │ │ ├── ASP.NET Core.md │ │ │ ├── Angular.md │ │ │ ├── Babel with TypeScript.md │ │ │ ├── DOM Manipulation.md │ │ │ ├── Gulp.md │ │ │ ├── Migrating from JavaScript.md │ │ │ ├── React.md │ │ │ └── TypeScript Tooling in 5 minutes.md │ ├── package.json │ ├── scripts │ │ ├── generateAttribution.js │ │ ├── generateDocsNavigationPerLanguage.js │ │ ├── generateTypesForFilesInDocs.js │ │ ├── handbookAttribution.json │ │ ├── lintTwoslashErrors.js │ │ └── types │ │ │ └── AllFilenames.d.ts │ └── vendor │ │ └── previousTranslations.json ├── glossary │ ├── .gitignore │ ├── README.md │ ├── copy │ │ └── en │ │ │ ├── declare.md │ │ │ ├── emit.md │ │ │ ├── index-signatures.md │ │ │ ├── interface.md │ │ │ ├── parser.md │ │ │ ├── runtime.md │ │ │ ├── shape.md │ │ │ ├── source-file.md │ │ │ ├── type-system.md │ │ │ └── types-vs-runtime.md │ ├── data │ │ ├── .gitignore │ │ └── _types.ts │ ├── package.json │ ├── scripts │ │ ├── generateMarkdown.ts │ │ └── lint.js │ └── tsconfig.json ├── playground-examples │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── copy │ │ └── en │ │ │ ├── 3-7 │ │ │ ├── Fixits │ │ │ │ ├── Big number literals.ts │ │ │ │ ├── Const to let.ts │ │ │ │ └── Infer From Usage Changes.ts │ │ │ ├── Syntax and Messaging │ │ │ │ ├── Flattened Error Reporting.ts │ │ │ │ ├── Nullish Coalescing.ts │ │ │ │ └── Optional Chaining.ts │ │ │ └── Types and Code Flow │ │ │ │ ├── Assertion Functions.ts │ │ │ │ ├── Recursive Type References.ts │ │ │ │ └── Uncalled Function Checks.ts │ │ │ ├── 3-8 │ │ │ ├── Breaking Changes │ │ │ │ └── Checking Unions with Index Signatures.ts │ │ │ ├── JSDoc Improvements │ │ │ │ └── Accessibility Modifiers.js │ │ │ └── Syntax and Messaging │ │ │ │ ├── Export Modules From.ts │ │ │ │ ├── Private Class Fields.ts │ │ │ │ └── Type Imports.tsx │ │ │ ├── 4-0 │ │ │ ├── New Checks │ │ │ │ └── Class Constructor Code Flow.ts │ │ │ ├── New JS Features │ │ │ │ ├── JSDoc Deprecated.ts │ │ │ │ ├── Logical Operators and Assignment.ts │ │ │ │ └── Nullish Coalescing.ts │ │ │ └── New TS Features │ │ │ │ ├── Named Tuples.ts │ │ │ │ ├── Unknown in Catch.ts │ │ │ │ └── Variadic Tuples.ts │ │ │ ├── 4-1 │ │ │ ├── New JS Features │ │ │ │ ├── New JSX Support.tsx │ │ │ │ └── See in JSDoc.ts │ │ │ └── Template Literals │ │ │ │ ├── Intro to Template Literals.ts │ │ │ │ ├── Mapped Types with Template Literals.ts │ │ │ │ └── String Manipulation with Template Literals.ts │ │ │ ├── 4-2 │ │ │ ├── Fixits │ │ │ │ └── Create Function from Call.ts │ │ │ └── New TS Features │ │ │ │ ├── Abstract Class Constructors.ts │ │ │ │ ├── Rest Elements in Tuple Types.ts │ │ │ │ ├── Smarter Type Alias Preservation.ts │ │ │ │ └── Use Index Accessors for Index Signatures.ts │ │ │ ├── 4-3 │ │ │ └── New TS Features │ │ │ │ ├── No Implicit Class Overrides.ts │ │ │ │ └── Separate Write vs Read on Properties.ts │ │ │ ├── 4-4 │ │ │ ├── New JS Features │ │ │ │ ├── Control Flow Improvements.ts │ │ │ │ └── Errors for High Confidence Errors.ts │ │ │ └── New TS Features │ │ │ │ ├── Exact Optional Properties.ts │ │ │ │ └── Use unknown for Catch Variables.ts │ │ │ ├── 4-7 │ │ │ ├── New JS Features │ │ │ │ ├── Control Flow Improvements.ts │ │ │ │ └── Improved Function Inference.ts │ │ │ └── New TS Features │ │ │ │ ├── Extends Constraints.ts │ │ │ │ └── Instantiation Expressions.ts │ │ │ ├── JavaScript │ │ │ ├── External APIs │ │ │ │ ├── TypeScript with Deno.ts │ │ │ │ ├── TypeScript with Node.js │ │ │ │ ├── TypeScript with React.tsx │ │ │ │ ├── TypeScript with Web.js │ │ │ │ └── TypeScript with WebGL.js │ │ │ ├── Functions with JavaScript │ │ │ │ ├── Function Chaining.ts │ │ │ │ ├── Generic Functions.ts │ │ │ │ └── Typing Functions.ts │ │ │ ├── Helping with JavaScript │ │ │ │ ├── Errors.ts │ │ │ │ └── Quick Fixes.ts │ │ │ ├── JavaScript Essentials │ │ │ │ ├── Code Flow.ts │ │ │ │ ├── Functions.ts │ │ │ │ ├── Hello World.ts │ │ │ │ └── Objects and Arrays.ts │ │ │ ├── Modern JavaScript │ │ │ │ ├── Async Await.ts │ │ │ │ ├── Immutability.ts │ │ │ │ ├── Import Export.ts │ │ │ │ └── JSDoc Support.js │ │ │ ├── README.md │ │ │ └── Working With Classes │ │ │ │ ├── Classes 101.ts │ │ │ │ ├── Generic Classes.ts │ │ │ │ ├── Mixins.ts │ │ │ │ └── This.ts │ │ │ ├── Playground │ │ │ ├── Config │ │ │ │ ├── JavaScript Playgrounds.js │ │ │ │ └── New Compiler Defaults.ts │ │ │ ├── Language │ │ │ │ ├── Automatic Type Acquisition.ts │ │ │ │ └── Fixits.ts │ │ │ └── Tooling │ │ │ │ ├── Mobile Support.ts │ │ │ │ ├── Sharable URLs.ts │ │ │ │ └── TypeScript Versions.ts │ │ │ ├── README.md │ │ │ ├── TypeScript │ │ │ ├── Language Extensions │ │ │ │ ├── Enums.ts │ │ │ │ ├── Nominal Typing.ts │ │ │ │ └── Types vs Interfaces.ts │ │ │ ├── Language │ │ │ │ ├── Soundness.ts │ │ │ │ ├── Structural Typing.ts │ │ │ │ ├── Type Guards.ts │ │ │ │ └── Type Widening and Narrowing.ts │ │ │ ├── Meta-Types │ │ │ │ ├── Conditional Types.ts │ │ │ │ ├── Discriminate Types.ts │ │ │ │ ├── Indexed Types.ts │ │ │ │ └── Mapped Types.ts │ │ │ ├── Primitives │ │ │ │ ├── Any.ts │ │ │ │ ├── Literals.ts │ │ │ │ ├── Union and Intersection Types.ts │ │ │ │ └── Unknown and Never.ts │ │ │ ├── README.md │ │ │ └── Type Primitives │ │ │ │ ├── Built-in Utility Types.ts │ │ │ │ ├── Nullable Types.ts │ │ │ │ └── Tuples.ts │ │ │ └── sections.json │ ├── generated │ │ └── .gitignore │ ├── package.json │ └── scripts │ │ ├── copyFiles.js │ │ └── generateTOC.js ├── playground-handbook │ ├── .gitignore │ ├── README.md │ ├── copy │ │ └── en │ │ │ ├── Compiler Settings.md │ │ │ ├── Examples.md │ │ │ ├── Exporting Your Code.md │ │ │ ├── JS + DTS sidebars.md │ │ │ ├── Localization.md │ │ │ ├── Overview.md │ │ │ ├── Running Code.md │ │ │ ├── Settings Panel.md │ │ │ ├── Twoslash Annotations.md │ │ │ ├── Type Acquisition.md │ │ │ ├── TypeScript Versions.md │ │ │ ├── URL Structure.md │ │ │ ├── Writing DTS Files.md │ │ │ └── Writing JavaScript.md │ ├── package.json │ └── scripts │ │ └── generateJSON.mjs ├── playground-worker │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── tsconfig.json │ └── types.d.ts ├── playground │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── getListOfPluginsFromNPM.js │ ├── src │ │ ├── ambient.d.ts │ │ ├── createConfigDropdown.ts │ │ ├── createElements.ts │ │ ├── createUI.ts │ │ ├── ds │ │ │ └── createDesignSystem.ts │ │ ├── exporter.ts │ │ ├── getExample.ts │ │ ├── index.ts │ │ ├── localizeWithFallback.ts │ │ ├── monaco │ │ │ └── ExampleHighlight.ts │ │ ├── navigation.ts │ │ ├── pluginUtils.ts │ │ ├── sidebar │ │ │ ├── ast.ts │ │ │ ├── fixtures │ │ │ │ └── npmPlugins.ts │ │ │ ├── plugins.ts │ │ │ ├── runtime.ts │ │ │ ├── settings.ts │ │ │ ├── showDTS.ts │ │ │ ├── showErrors.ts │ │ │ ├── showJS.ts │ │ │ └── showTypes.ts │ │ ├── theme.ts │ │ └── twoslashInlays.ts │ ├── test │ │ └── typeAcquisition.test.tsx │ └── tsconfig.json ├── sandbox │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── script │ │ └── downloadReleases.js │ ├── src │ │ ├── ambient.d.ts │ │ ├── compilerOptions.ts │ │ ├── createCompilerHost.ts │ │ ├── getInitialCode.ts │ │ ├── index.ts │ │ ├── monacoTSVersions.ts │ │ ├── theme.ts │ │ ├── tsWorker.ts │ │ ├── twoslashSupport.ts │ │ └── vendor │ │ │ ├── lzstring.min.d.ts │ │ │ └── lzstring.min.js │ ├── test │ │ ├── defaultCompilerOptions.test.ts │ │ ├── twoslashSupport.test.ts │ │ └── typeAcquisition.test.tsx │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsdx.config.js ├── ts-twoslasher │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── scripts │ │ ├── inline-results.js │ │ └── makeGlobals.js │ ├── src │ │ ├── index.ts │ │ ├── utils.ts │ │ └── validation.ts │ ├── test │ │ ├── .prettierignore │ │ ├── README.md │ │ ├── compiler_options.test.ts │ │ ├── custom_transformers.test.ts │ │ ├── cutting.test.ts │ │ ├── fixtures.test.ts │ │ ├── fixtures │ │ │ ├── compiler_errors.ts │ │ │ ├── compiler_flags.ts │ │ │ ├── completions.ts │ │ │ ├── cuts_out_unnecessary_code.ts │ │ │ ├── declarations.ts │ │ │ ├── errorsWithGenerics.ts │ │ │ ├── highlighting.ts │ │ │ ├── import_files.ts │ │ │ ├── importsModules.ts │ │ │ ├── multiFileErrors.ts │ │ │ ├── query.ts │ │ │ ├── showEmit.ts │ │ │ ├── tests │ │ │ │ ├── arbitraryCommands.ts │ │ │ │ ├── crossExports.ts │ │ │ │ ├── cut_file_errors.ts │ │ │ │ ├── cut_files.ts │ │ │ │ ├── emittedOutFile.ts │ │ │ │ ├── handlesJSON.ts │ │ │ │ ├── hidden_emit.ts │ │ │ │ ├── inlineHighlights.ts │ │ │ │ ├── jsx.ts │ │ │ │ ├── large-cut.ts │ │ │ │ ├── lib.ts │ │ │ │ ├── multiLookups.ts │ │ │ │ ├── preact.tsx │ │ │ │ ├── queriesWithSpaceBefore.ts │ │ │ │ ├── queryHandlesNoToken.ts │ │ │ │ ├── removePrettierIgnore.ts │ │ │ │ ├── showEmit.ts │ │ │ │ ├── showJS.ts │ │ │ │ ├── tsx.ts │ │ │ │ └── twoliner.ts │ │ │ └── throws │ │ │ │ ├── multifile_errors.ts │ │ │ │ ├── unexpected_errors.ts │ │ │ │ ├── unknown_compiler_error.ts │ │ │ │ ├── unknown_compiler_value.ts │ │ │ │ └── unknown_extension.herjk │ │ ├── highlights.test.ts │ │ ├── modules.test.ts │ │ ├── queries.test.ts │ │ ├── results │ │ │ ├── compiler_errors.json │ │ │ ├── compiler_flags.json │ │ │ ├── completions.json │ │ │ ├── cuts_out_unnecessary_code.json │ │ │ ├── declarations.json │ │ │ ├── errorsWithGenerics.json │ │ │ ├── highlighting.json │ │ │ ├── import_files.json │ │ │ ├── importsModules.json │ │ │ ├── multiFileErrors.json │ │ │ ├── multifile_errors.json │ │ │ ├── query.json │ │ │ ├── showEmit.json │ │ │ ├── tests │ │ │ │ ├── arbitraryCommands.json │ │ │ │ ├── crossExports.json │ │ │ │ ├── cut_file_errors.json │ │ │ │ ├── cut_files.json │ │ │ │ ├── emittedOutFile.json │ │ │ │ ├── handlesJSON.json │ │ │ │ ├── hidden_emit.json │ │ │ │ ├── inlineHighlights.json │ │ │ │ ├── jsx.json │ │ │ │ ├── large-cut.json │ │ │ │ ├── lib.json │ │ │ │ ├── multiLookups.json │ │ │ │ ├── noIndexInFiles.json │ │ │ │ ├── preact.json │ │ │ │ ├── queriesWithSpaceBefore.json │ │ │ │ ├── queryHandlesNoToken.json │ │ │ │ ├── removePrettierIgnore.json │ │ │ │ ├── showEmit.json │ │ │ │ ├── showJS.json │ │ │ │ ├── tsx.json │ │ │ │ └── twoliner.json │ │ │ ├── unexpected_errors.json │ │ │ ├── unknown_compiler_error.json │ │ │ ├── unknown_compiler_value.json │ │ │ └── unknown_extension.json │ │ ├── tags.test.ts │ │ └── utils.test.ts │ └── tsconfig.json ├── tsconfig-reference │ ├── .gitignore │ ├── README.md │ ├── copy │ │ └── en │ │ │ ├── categories │ │ │ ├── Additional_Checks_6176.md │ │ │ ├── Advanced_Options_6178.md │ │ │ ├── Backwards_Compatibility_6253.md │ │ │ ├── Basic_Options_6172.md │ │ │ ├── Command_line_Options_6171.md │ │ │ ├── Compiler_Diagnostics_6251.md │ │ │ ├── Completeness_6257.md │ │ │ ├── Editor_Support_6249.md │ │ │ ├── Emit_6246.md │ │ │ ├── Experimental_Options_6177.md │ │ │ ├── Interop_Constraints_6252.md │ │ │ ├── JavaScript_Support_6247.md │ │ │ ├── Language_and_Environment_6254.md │ │ │ ├── Module_Resolution_Options_6174.md │ │ │ ├── Modules_6244.md │ │ │ ├── Output_Formatting_6256.md │ │ │ ├── Project_Files_0.md │ │ │ ├── Projects_6255.md │ │ │ ├── Source_Map_Options_6175.md │ │ │ ├── Strict_Type_Checking_Options_6173.md │ │ │ ├── Type_Checking_6248.md │ │ │ └── Watch_and_Build_Modes_6250.md │ │ │ ├── cli │ │ │ └── help.md │ │ │ ├── intro.md │ │ │ ├── options │ │ │ ├── allowArbitraryExtensions.md │ │ │ ├── allowImportingTsExtensions.md │ │ │ ├── allowJs.md │ │ │ ├── allowSyntheticDefaultImports.md │ │ │ ├── allowUmdGlobalAccess.md │ │ │ ├── allowUnreachableCode.md │ │ │ ├── allowUnusedLabels.md │ │ │ ├── alwaysStrict.md │ │ │ ├── assumeChangesOnlyAffectDirectDependencies.md │ │ │ ├── baseUrl.md │ │ │ ├── charset.md │ │ │ ├── checkJs.md │ │ │ ├── clean.md │ │ │ ├── composite.md │ │ │ ├── customConditions.md │ │ │ ├── declaration.md │ │ │ ├── declarationDir.md │ │ │ ├── declarationMap.md │ │ │ ├── diagnostics.md │ │ │ ├── disableFilenameBasedTypeAcquisition.md │ │ │ ├── disableReferencedProjectLoad.md │ │ │ ├── disableSizeLimit.md │ │ │ ├── disableSolutionSearching.md │ │ │ ├── disableSourceOfProjectReferenceRedirect.md │ │ │ ├── downlevelIteration.md │ │ │ ├── emitBOM.md │ │ │ ├── emitDeclarationOnly.md │ │ │ ├── emitDecoratorMetadata.md │ │ │ ├── enable.md │ │ │ ├── esModuleInterop.md │ │ │ ├── exactOptionalPropertyTypes.md │ │ │ ├── exclude.md │ │ │ ├── excludeDirectories.md │ │ │ ├── excludeFiles.md │ │ │ ├── experimentalDecorators.md │ │ │ ├── explainFiles.md │ │ │ ├── extendedDiagnostics.md │ │ │ ├── extends.md │ │ │ ├── fallbackPolling.md │ │ │ ├── files.md │ │ │ ├── force.md │ │ │ ├── forceConsistentCasingInFileNames.md │ │ │ ├── generateCpuProfile.md │ │ │ ├── importHelpers.md │ │ │ ├── importsNotUsedAsValues.md │ │ │ ├── include.md │ │ │ ├── incremental.md │ │ │ ├── inlineSourceMap.md │ │ │ ├── inlineSources.md │ │ │ ├── isolatedModules.md │ │ │ ├── jsx.md │ │ │ ├── jsxFactory.md │ │ │ ├── jsxFragmentFactory.md │ │ │ ├── jsxImportSource.md │ │ │ ├── keyofStringsOnly.md │ │ │ ├── lib.md │ │ │ ├── listEmittedFiles.md │ │ │ ├── listFiles.md │ │ │ ├── locale.md │ │ │ ├── mapRoot.md │ │ │ ├── maxNodeModuleJsDepth.md │ │ │ ├── module.md │ │ │ ├── moduleDetection.md │ │ │ ├── moduleResolution.md │ │ │ ├── moduleSuffixes.md │ │ │ ├── newLine.md │ │ │ ├── noEmit.md │ │ │ ├── noEmitHelpers.md │ │ │ ├── noEmitOnError.md │ │ │ ├── noErrorTruncation.md │ │ │ ├── noFallthroughCasesInSwitch.md │ │ │ ├── noImplicitAny.md │ │ │ ├── noImplicitOverride.md │ │ │ ├── noImplicitReturns.md │ │ │ ├── noImplicitThis.md │ │ │ ├── noImplicitUseStrict.md │ │ │ ├── noLib.md │ │ │ ├── noPropertyAccessFromIndexSignature.md │ │ │ ├── noResolve.md │ │ │ ├── noStrictGenericChecks.md │ │ │ ├── noUncheckedIndexedAccess.md │ │ │ ├── noUnusedLocals.md │ │ │ ├── noUnusedParameters.md │ │ │ ├── out.md │ │ │ ├── outDir.md │ │ │ ├── outFile.md │ │ │ ├── paths.md │ │ │ ├── plugins.md │ │ │ ├── preserveConstEnums.md │ │ │ ├── preserveSymlinks.md │ │ │ ├── preserveValueImports.md │ │ │ ├── preserveWatchOutput.md │ │ │ ├── pretty.md │ │ │ ├── reactNamespace.md │ │ │ ├── references.md │ │ │ ├── removeComments.md │ │ │ ├── resolveJsonModule.md │ │ │ ├── resolvePackageJsonExports.md │ │ │ ├── resolvePackageJsonImports.md │ │ │ ├── rootDir.md │ │ │ ├── rootDirs.md │ │ │ ├── skipDefaultLibCheck.md │ │ │ ├── skipLibCheck.md │ │ │ ├── sourceMap.md │ │ │ ├── sourceRoot.md │ │ │ ├── strict.md │ │ │ ├── strictBindCallApply.md │ │ │ ├── strictFunctionTypes.md │ │ │ ├── strictNullChecks.md │ │ │ ├── strictPropertyInitialization.md │ │ │ ├── stripInternal.md │ │ │ ├── suppressExcessPropertyErrors.md │ │ │ ├── suppressImplicitAnyIndexErrors.md │ │ │ ├── synchronousWatchDirectory.md │ │ │ ├── target.md │ │ │ ├── traceResolution.md │ │ │ ├── tsBuildInfoFile.md │ │ │ ├── typeAcquisition.md │ │ │ ├── typeAcquisition │ │ │ │ ├── exclude.md │ │ │ │ └── include.md │ │ │ ├── typeRoots.md │ │ │ ├── types.md │ │ │ ├── useDefineForClassFields.md │ │ │ ├── useUnknownInCatchVariables.md │ │ │ ├── verbatimModuleSyntax.md │ │ │ ├── verbose.md │ │ │ ├── watchDirectory.md │ │ │ └── watchFile.md │ │ │ └── sections │ │ │ ├── Top Level.md │ │ │ ├── buildOptions.md │ │ │ ├── compilerOptions.md │ │ │ ├── typeAcquisition.md │ │ │ └── watchOptions.md │ ├── data │ │ ├── .gitignore │ │ └── _types.ts │ ├── output │ │ ├── .gitignore │ │ └── .gitkeep │ ├── package.json │ ├── scripts │ │ ├── cli │ │ │ ├── generateJSON.ts │ │ │ └── generateMarkdown.ts │ │ ├── lint.js │ │ ├── msbuild │ │ │ ├── Microsoft.TypeScript.targets │ │ │ ├── generateJSON.ts │ │ │ ├── generateMarkdown.ts │ │ │ └── types.d.ts │ │ ├── schema │ │ │ ├── downloadSchemaBase.ts │ │ │ ├── exampleTsconfig.json │ │ │ ├── generateJSON.ts │ │ │ ├── result │ │ │ │ └── schema.json │ │ │ └── vendor │ │ │ │ └── base.json │ │ ├── tsconfig │ │ │ ├── generateJSON.ts │ │ │ └── generateMarkdown.ts │ │ ├── tsconfigRules.ts │ │ └── types.ts │ └── tsconfig.json ├── typescript-vfs │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── makeGlobals.js │ ├── src │ │ └── index.ts │ ├── test │ │ ├── fsbacked.test.ts │ │ └── index.test.ts │ └── tsconfig.json └── typescriptlang-org │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── _tests │ └── backstop_data │ │ └── bitmaps_reference │ │ ├── backstop_default_Index_0_document_0_phone.png │ │ ├── backstop_default_Index_0_document_1_tablet.png │ │ └── backstop_default_Index_0_document_2_computer.png │ ├── gatsby-browser.js │ ├── gatsby-config.js │ ├── gatsby-node.js │ ├── gatsby-ssr.js │ ├── lib │ ├── bootup │ │ ├── createPages.ts │ │ ├── ingestion │ │ │ ├── createGlossaryPages.ts │ │ │ ├── createPagesForDocumentation.ts │ │ │ ├── createPlaygroundExamplePages.ts │ │ │ ├── createPlaygroundHandbook.ts │ │ │ ├── createPlaygrounds.ts │ │ │ ├── createRootPagesLocalized.ts │ │ │ ├── createTSConfigReference.ts │ │ │ ├── createTSConfigSingleFlagPages.ts │ │ │ └── languageFilter.ts │ │ └── pathsOnSiteTracker.ts │ ├── themes │ │ ├── themeGen.js │ │ ├── typescript-beta-dark.json │ │ └── typescript-beta-light.json │ └── utils │ │ ├── _invertCodeToHTML.test.ts │ │ ├── invertCodeToHTML.ts │ │ └── recursiveReadDirSync.js │ ├── package.json │ ├── scripts │ ├── backstop │ │ └── makeDarkMode.js │ ├── cacheBustPlayground.mjs │ ├── createLighthouseJSON.js │ ├── downloadPlaygroundAssets.js │ ├── downloadSearchAssets.js │ ├── ensureDepsAreBuilt.js │ ├── getTypeScriptNPMVersions.js │ ├── makeMarkdownForAppInsights.js │ ├── pingTeamsWithAppInsightData.js │ ├── setupStaging.mjs │ ├── updateAppInsightsGitHubIssue.js │ └── updateIndexTwoslashExamples.js │ ├── src │ ├── assets │ │ ├── community │ │ │ ├── conferences │ │ │ │ ├── tsconf-2019-logo.png │ │ │ │ ├── tsconf-eu-2020-brief.png │ │ │ │ ├── tsconf-eu-2020-logo.png │ │ │ │ ├── tsconf-it-2019-logo.png │ │ │ │ └── tsconf-jp-logo.png │ │ │ ├── connect-blog-icon.svg │ │ │ ├── connect-bug-icon.svg │ │ │ ├── connect-discord.svg │ │ │ ├── connect-github-icon.png │ │ │ ├── connect-gitter.svg │ │ │ ├── connect-group-icon.svg │ │ │ ├── connect-stackoverflow-icon.svg │ │ │ ├── connect-twitter-icon.svg │ │ │ ├── connect-uservoice-icon.svg │ │ │ ├── definitely_typed_logo.png │ │ │ └── meetup-logos │ │ │ │ ├── brazil-ts.jpg │ │ │ │ ├── dublin-ts.jpg │ │ │ │ ├── hamburg-ts.png │ │ │ │ ├── ktug.jpg │ │ │ │ ├── london-ts.jpg │ │ │ │ ├── melbourne.jpg │ │ │ │ ├── milano-ts.jpg │ │ │ │ ├── paris-ts.jpg │ │ │ │ ├── phx-ts.jpg │ │ │ │ ├── san-fran-ts.jpg │ │ │ │ ├── seattle.jpg │ │ │ │ ├── sqvts.jpg │ │ │ │ ├── sydney.jpg │ │ │ │ ├── typescript-jp.jpg │ │ │ │ ├── typescript-nyc.jpg │ │ │ │ ├── warsaw-ts.jpg │ │ │ │ └── wroclaw-ts.jpg │ │ ├── index │ │ │ ├── code-dark.png │ │ │ ├── code-light.png │ │ │ ├── handbook.jpg │ │ │ ├── play-dark.png │ │ │ └── play-light.png │ │ ├── microsoft-logo.png │ │ ├── playground-plugin-preview.png │ │ ├── typescript-handbook.epub │ │ │ └── index.html │ │ ├── typescript-handbook.pdf │ │ │ └── index.html │ │ └── v3.png │ ├── components │ │ ├── HeadSEO.tsx │ │ ├── Intl.tsx │ │ ├── IntlLink.tsx │ │ ├── Popup.tsx │ │ ├── QuickJump.tsx │ │ ├── ShowExamples.scss │ │ ├── ShowExamples.tsx │ │ ├── SuppressWhenTouch.tsx │ │ ├── TmpLink.tsx │ │ ├── VersionBar.tsx │ │ ├── devNav.tsx │ │ ├── display │ │ │ ├── ButtonGrid.tsx │ │ │ └── GreyButton.tsx │ │ ├── handbook │ │ │ ├── Contributors.tsx │ │ │ └── NextPrev.tsx │ │ ├── index │ │ │ ├── AboveTheFold.tsx │ │ │ ├── AdoptSteps.tsx │ │ │ ├── EditorExamples.tsx │ │ │ ├── MigrationStories.tsx │ │ │ └── twoslash │ │ │ │ ├── Index2Del1TS.ts │ │ │ │ ├── Index2Del2RM.ts │ │ │ │ ├── Index2Del3JS.js │ │ │ │ ├── IndexAdoptGrad1.ts │ │ │ │ ├── IndexAdoptGrad2.ts │ │ │ │ ├── IndexGetStarted1.js │ │ │ │ ├── IndexGetStarted2.js │ │ │ │ ├── IndexGetStarted3.js │ │ │ │ ├── IndexGetStarted4.ts │ │ │ │ ├── JSDoc.js │ │ │ │ ├── TS.ts │ │ │ │ ├── cfa.ts │ │ │ │ ├── generated │ │ │ │ ├── Index2Del1TS.tsx │ │ │ │ ├── Index2Del2RM.tsx │ │ │ │ ├── Index2Del3JS.js.tsx │ │ │ │ ├── IndexAdoptGrad1.tsx │ │ │ │ ├── IndexAdoptGrad2.tsx │ │ │ │ ├── IndexGetStarted1.js.tsx │ │ │ │ ├── IndexGetStarted2.js.tsx │ │ │ │ ├── IndexGetStarted3.js.tsx │ │ │ │ ├── IndexGetStarted4.tsx │ │ │ │ ├── JSDoc.js.tsx │ │ │ │ ├── TS.tsx │ │ │ │ ├── cfa.tsx │ │ │ │ ├── interface.tsx │ │ │ │ ├── react.tsx │ │ │ │ ├── showErrors.tsx │ │ │ │ └── typeDefinitions.tsx │ │ │ │ ├── homepage.json │ │ │ │ ├── interface.ts │ │ │ │ ├── react.tsx │ │ │ │ ├── showErrors.ts │ │ │ │ └── typeDefinitions.tsx │ │ ├── layout.tsx │ │ ├── layout │ │ │ ├── CookieBanner.tsx │ │ │ ├── LanguageRecommendation.tsx │ │ │ ├── Sidebar-keyboard.tsx │ │ │ ├── Sidebar.scss │ │ │ ├── Sidebar.tsx │ │ │ ├── SiteFooter-Customize.tsx │ │ │ ├── SiteFooter-PlaygroundSamples.tsx │ │ │ ├── SiteFooter.scss │ │ │ ├── SiteFooter.tsx │ │ │ ├── TopNav.scss │ │ │ ├── TopNav.tsx │ │ │ ├── cookie.scss │ │ │ ├── fonts.scss │ │ │ ├── main.scss │ │ │ └── stickyNavigation.ts │ │ ├── svgs │ │ │ └── documentation.tsx │ │ └── workbench │ │ │ └── plugins │ │ │ ├── about.ts │ │ │ ├── assertions.ts │ │ │ ├── debug.ts │ │ │ ├── docs.ts │ │ │ ├── emits.ts │ │ │ └── markdown.ts │ ├── copy │ │ ├── .gitignore │ │ ├── en │ │ │ ├── cheatsheets.ts │ │ │ ├── community.ts │ │ │ ├── documentation.ts │ │ │ ├── dt.ts │ │ │ ├── en.ts │ │ │ ├── footer.ts │ │ │ ├── handbook.ts │ │ │ ├── head-seo.ts │ │ │ ├── index.ts │ │ │ ├── index2.ts │ │ │ ├── nav.ts │ │ │ ├── playground.ts │ │ │ └── tsconfig.ts │ │ └── inYourLanguage.ts │ ├── dom.d.ts │ ├── lib │ │ ├── createInternational.ts │ │ ├── documentationNavigationUtils.ts │ │ ├── hasLocalStorage.ts │ │ ├── isTouchDevice.ts │ │ ├── playgroundURLs.ts │ │ ├── release-plan.json │ │ └── whenEscape.ts │ ├── pages │ │ ├── README.md │ │ ├── branding.scss │ │ ├── branding.tsx │ │ └── dev │ │ │ ├── bug-workbench.tsx │ │ │ ├── dev.scss │ │ │ ├── playground-plugins.tsx │ │ │ ├── sandbox.tsx │ │ │ ├── twoslash.tsx │ │ │ └── typescript-vfs.tsx │ ├── redirects │ │ └── setupRedirects.ts │ ├── style │ │ ├── globals.scss │ │ └── theme.jsonc │ └── templates │ │ ├── documentation.scss │ │ ├── documentation.tsx │ │ ├── glossary.scss │ │ ├── glossary.tsx │ │ ├── markdown-twoslash.scss │ │ ├── markdown.scss │ │ ├── pages │ │ ├── cheatsheets.tsx │ │ ├── community.tsx │ │ ├── css │ │ │ ├── cheatsheets.scss │ │ │ ├── community.scss │ │ │ ├── documentation.scss │ │ │ ├── grid.scss │ │ │ ├── index.scss │ │ │ └── tools.scss │ │ ├── docs │ │ │ ├── handbook │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── download.tsx │ │ ├── dt │ │ │ └── search.tsx │ │ ├── empty.tsx │ │ ├── index.tsx │ │ ├── tools.tsx │ │ └── why-create-typescript.tsx │ │ ├── play-example.tsx │ │ ├── play.scss │ │ ├── play.tsx │ │ ├── playgroundHandbook.tsx │ │ ├── scripts │ │ ├── setupLikeDislikeButtons.ts │ │ └── setupSubNavigationSidebar.ts │ │ ├── tsconfig.scss │ │ ├── tsconfigOptionOnePage.tsx │ │ └── tsconfigReference.tsx │ ├── static │ ├── .gitattributes │ ├── License.html │ ├── Web.config │ ├── assets │ │ ├── .gitkeep │ │ └── typescript-cheat-sheets.zip │ ├── branding │ │ ├── palette.png │ │ ├── ts-lettermark-blue.png │ │ ├── ts-lettermark-blue.svg │ │ ├── ts-lettermark-white.png │ │ ├── ts-lettermark-white.svg │ │ ├── ts-logo-128.png │ │ ├── ts-logo-128.svg │ │ ├── ts-logo-256.png │ │ ├── ts-logo-256.svg │ │ ├── ts-logo-512.png │ │ ├── ts-logo-512.svg │ │ ├── ts-logo-round-128.png │ │ ├── ts-logo-round-128.svg │ │ ├── ts-logo-round-256.png │ │ ├── ts-logo-round-256.svg │ │ ├── ts-logo-round-512.png │ │ ├── ts-logo-round-512.svg │ │ ├── ts-logo-single-color-black.svg │ │ ├── ts-logo-single-color-white.svg │ │ └── typescript-design-assets.zip │ ├── css │ │ └── docsearch.css │ ├── favicon.ico │ ├── fonts │ │ ├── CascadiaCode-SemiLight.woff2 │ │ ├── CascadiaMono-SemiLight.woff2 │ │ ├── DankMono-Regular.woff2 │ │ ├── FiraCode-Regular.woff2 │ │ ├── JetBrainsMono-Regular.woff2 │ │ ├── OpenDyslexic-Regular.woff │ │ ├── OpenDyslexicMono-Regular.woff │ │ └── SourceCodePro-Regular.woff2 │ ├── icons │ │ └── ts-logo-512.png │ ├── images │ │ ├── branding │ │ │ ├── logo-grouping.svg │ │ │ ├── logos.png │ │ │ ├── palette-bg.svg │ │ │ ├── palette.svg │ │ │ ├── two-colors.svg │ │ │ └── two-longform.svg │ │ ├── cheatsheets │ │ │ ├── TypeScript Classes.png │ │ │ ├── TypeScript Control Flow Analysis.png │ │ │ ├── TypeScript Interfaces.png │ │ │ └── TypeScript Types.png │ │ ├── docs │ │ │ └── greet_person.png │ │ ├── index │ │ │ ├── get-started-download-blue.svg │ │ │ ├── get-started-download.svg │ │ │ ├── get-started-handbook-blue.svg │ │ │ ├── get-started-handbook.svg │ │ │ ├── get-started-playground-blue.svg │ │ │ ├── get-started-playground.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── state-of-js.svg │ │ │ ├── ts-at-scale.jpg │ │ │ ├── ts-conf-keynote.jpg │ │ │ ├── what-is-new-ts.jpg │ │ │ └── wrong-ts.jpg │ │ ├── tools │ │ │ ├── cheat-sheets.png │ │ │ ├── dt-search.png │ │ │ ├── play.png │ │ │ └── tsconfig-ref.png │ │ └── tutorials │ │ │ └── aspnet │ │ │ ├── choosedependencies.png │ │ │ ├── createwebapp.png │ │ │ ├── debugger.png │ │ │ ├── downloaddependency.png │ │ │ ├── emptytemplate.png │ │ │ ├── namewebapp.png │ │ │ ├── newfolder.png │ │ │ ├── npm.png │ │ │ ├── packagejson.png │ │ │ ├── scripts.png │ │ │ ├── taskrunner.png │ │ │ ├── taskrunnerrefresh.png │ │ │ ├── tsconfig.png │ │ │ ├── tsfile.png │ │ │ ├── tsgif.mov │ │ │ └── workingsite.png │ └── js │ │ ├── docsearch.js │ │ ├── vs.loader.js │ │ └── vs.loader.js.map │ └── tsconfig.json ├── serve ├── README.md ├── index.js ├── package-lock.json ├── package.json └── public │ └── index.html ├── spellcheck.json ├── test ├── fixtures │ └── old-site-map.ts └── verifyPackageVersions.js ├── watcher.js └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/critical-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/ISSUE_TEMPLATE/critical-issue.md -------------------------------------------------------------------------------- /.github/codeql/codeql-configuration.yml: -------------------------------------------------------------------------------- 1 | name : CodeQL Configuration 2 | 3 | paths: 4 | - './packages' 5 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/close-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/close-preview.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/deploy-preview.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/deploy-prod-static.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/deploy-prod.yml -------------------------------------------------------------------------------- /.github/workflows/keepalive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/keepalive.yml -------------------------------------------------------------------------------- /.github/workflows/update_teams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/update_teams.yml -------------------------------------------------------------------------------- /.github/workflows/v2-merged-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/v2-merged-staging.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.github/workflows/weekly-stats.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.huskyrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/done.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.vscode/done.aiff -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/.gitattributes: -------------------------------------------------------------------------------- 1 | * -diff 2 | -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.yarn/plugins/@yarnpkg/plugin-version.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.yarn/releases/yarn-3.2.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dangerfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/dangerfile.ts -------------------------------------------------------------------------------- /docs/Converting Twoslash Code Samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/Converting Twoslash Code Samples.md -------------------------------------------------------------------------------- /docs/Deprecating a page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/Deprecating a page.md -------------------------------------------------------------------------------- /docs/How i18n Works For Site Copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/How i18n Works For Site Copy.md -------------------------------------------------------------------------------- /docs/New TypeScript Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/New TypeScript Version.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Setup Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/Setup Troubleshooting.md -------------------------------------------------------------------------------- /docs/Something Went Wrong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/Something Went Wrong.md -------------------------------------------------------------------------------- /docs/User Flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/docs/User Flows.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/package.json -------------------------------------------------------------------------------- /packages/ata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/README.md -------------------------------------------------------------------------------- /packages/ata/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/jest.config.cjs -------------------------------------------------------------------------------- /packages/ata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/package.json -------------------------------------------------------------------------------- /packages/ata/src/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/src/apis.ts -------------------------------------------------------------------------------- /packages/ata/src/edgeCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/src/edgeCases.ts -------------------------------------------------------------------------------- /packages/ata/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/src/index.ts -------------------------------------------------------------------------------- /packages/ata/src/userFacingTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/src/userFacingTypes.d.ts -------------------------------------------------------------------------------- /packages/ata/tests/ata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/tests/ata.spec.ts -------------------------------------------------------------------------------- /packages/ata/tests/edgeCases.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/tests/edgeCases.spec.ts -------------------------------------------------------------------------------- /packages/ata/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ata/tsconfig.json -------------------------------------------------------------------------------- /packages/community-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/community-meta/README.md -------------------------------------------------------------------------------- /packages/community-meta/generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /packages/community-meta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/community-meta/package.json -------------------------------------------------------------------------------- /packages/community-meta/scripts/generateRichMeetupData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/community-meta/scripts/generateRichMeetupData.js -------------------------------------------------------------------------------- /packages/community-meta/scripts/meetups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/community-meta/scripts/meetups.js -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | template 3 | 4 | -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/README.md -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/index.js -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/package.json -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/.gitignore -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/.npmignore -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/README.md -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/package.json -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/rollup.config.js -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/src/index.ts -------------------------------------------------------------------------------- /packages/create-typescript-playground-plugin/template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/create-typescript-playground-plugin/template/tsconfig.json -------------------------------------------------------------------------------- /packages/documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/.gitignore -------------------------------------------------------------------------------- /packages/documentation/copy/en/Nightly Builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/Nightly Builds.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/By Example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/By Example.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Consumption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Consumption.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Deep Dive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Deep Dive.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Do's and Don'ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Do's and Don'ts.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Introduction.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Library Structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Library Structures.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Publishing.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/declaration-files/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/declaration-files/Templates.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/get-started/TS for JS Programmers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/get-started/TS for JS Programmers.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/get-started/TS for OOPers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/get-started/TS for OOPers.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Basic Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Basic Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Classes.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Functions.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Generics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Generics.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Interfaces.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Literal Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Literal Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v1/Unions and Intersections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v1/Unions and Intersections.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Basics.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Classes.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Everyday Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Everyday Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Modules.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/More on Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/More on Functions.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Narrowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Narrowing.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Object Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Object Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/The Handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/The Handbook.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Type Declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Type Declarations.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/handbook-v2/Understanding Errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/handbook-v2/Understanding Errors.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/javascript/Intro to JS with TS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/javascript/Intro to JS with TS.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/javascript/JSDoc Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/javascript/JSDoc Reference.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/modules-reference/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/modules-reference/Introduction.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/modules-reference/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/modules-reference/Reference.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/modules-reference/Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/modules-reference/Theory.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/modules-reference/diagrams/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/modules-reference/diagrams/README -------------------------------------------------------------------------------- /packages/documentation/copy/en/modules-reference/diagrams/theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/modules-reference/diagrams/theory.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/project-config/Compiler Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/project-config/Compiler Options.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/project-config/Configuring Watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/project-config/Configuring Watch.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/project-config/Project References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/project-config/Project References.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/project-config/tsconfig.json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/project-config/tsconfig.json.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Advanced Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Advanced Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Declaration Merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Declaration Merging.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Decorators.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Enums.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Iterators and Generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Iterators and Generators.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/JSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/JSX.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Mixins.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Namespaces and Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Namespaces and Modules.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Namespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Namespaces.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Symbols.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Triple-Slash Directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Triple-Slash Directives.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Type Compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Type Compatibility.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Type Inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Type Inference.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Utility Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Utility Types.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/reference/Variable Declarations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/reference/Variable Declarations.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.1.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.3.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.4.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.5.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.6.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.7.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 1.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 1.8.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.0.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.1.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.2.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.3.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.4.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.5.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.6.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.7.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.8.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 2.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 2.9.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.0.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.1.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.2.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.3.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.4.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.5.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.6.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.7.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.8.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 3.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 3.9.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.0.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.1.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.2.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.3.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.4.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.5.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.6.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.7.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.8.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 4.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 4.9.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 5.0.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 5.1.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 5.2.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/release-notes/TypeScript 5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/release-notes/TypeScript 5.3.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/ASP.NET Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/ASP.NET Core.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/Angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/Angular.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/Babel with TypeScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/Babel with TypeScript.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/DOM Manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/DOM Manipulation.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/Gulp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/Gulp.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/Migrating from JavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/Migrating from JavaScript.md -------------------------------------------------------------------------------- /packages/documentation/copy/en/tutorials/React.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/copy/en/tutorials/React.md -------------------------------------------------------------------------------- /packages/documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/package.json -------------------------------------------------------------------------------- /packages/documentation/scripts/generateAttribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/generateAttribution.js -------------------------------------------------------------------------------- /packages/documentation/scripts/generateDocsNavigationPerLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/generateDocsNavigationPerLanguage.js -------------------------------------------------------------------------------- /packages/documentation/scripts/generateTypesForFilesInDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/generateTypesForFilesInDocs.js -------------------------------------------------------------------------------- /packages/documentation/scripts/handbookAttribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/handbookAttribution.json -------------------------------------------------------------------------------- /packages/documentation/scripts/lintTwoslashErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/lintTwoslashErrors.js -------------------------------------------------------------------------------- /packages/documentation/scripts/types/AllFilenames.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/scripts/types/AllFilenames.d.ts -------------------------------------------------------------------------------- /packages/documentation/vendor/previousTranslations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/documentation/vendor/previousTranslations.json -------------------------------------------------------------------------------- /packages/glossary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/.gitignore -------------------------------------------------------------------------------- /packages/glossary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/README.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/declare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/declare.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/emit.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Emit" 3 | tags: typescript compiler 4 | --- 5 | -------------------------------------------------------------------------------- /packages/glossary/copy/en/index-signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/index-signatures.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/interface.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/parser.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/runtime.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/shape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/shape.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/source-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/source-file.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/type-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/type-system.md -------------------------------------------------------------------------------- /packages/glossary/copy/en/types-vs-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/copy/en/types-vs-runtime.md -------------------------------------------------------------------------------- /packages/glossary/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /packages/glossary/data/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/data/_types.ts -------------------------------------------------------------------------------- /packages/glossary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/package.json -------------------------------------------------------------------------------- /packages/glossary/scripts/generateMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/scripts/generateMarkdown.ts -------------------------------------------------------------------------------- /packages/glossary/scripts/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/scripts/lint.js -------------------------------------------------------------------------------- /packages/glossary/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/glossary/tsconfig.json -------------------------------------------------------------------------------- /packages/playground-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/.gitignore -------------------------------------------------------------------------------- /packages/playground-examples/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/.prettierignore -------------------------------------------------------------------------------- /packages/playground-examples/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/.prettierrc -------------------------------------------------------------------------------- /packages/playground-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/README.md -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/3-7/Fixits/Big number literals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/3-7/Fixits/Big number literals.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/3-7/Fixits/Const to let.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/3-7/Fixits/Const to let.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/JavaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/JavaScript/README.md -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/Playground/Language/Fixits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/Playground/Language/Fixits.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/README.md -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/TypeScript/Language/Soundness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/TypeScript/Language/Soundness.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/TypeScript/Primitives/Any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/TypeScript/Primitives/Any.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/TypeScript/Primitives/Literals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/TypeScript/Primitives/Literals.ts -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/TypeScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/TypeScript/README.md -------------------------------------------------------------------------------- /packages/playground-examples/copy/en/sections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/copy/en/sections.json -------------------------------------------------------------------------------- /packages/playground-examples/generated/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /packages/playground-examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/package.json -------------------------------------------------------------------------------- /packages/playground-examples/scripts/copyFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/scripts/copyFiles.js -------------------------------------------------------------------------------- /packages/playground-examples/scripts/generateTOC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-examples/scripts/generateTOC.js -------------------------------------------------------------------------------- /packages/playground-handbook/.gitignore: -------------------------------------------------------------------------------- 1 | output/* -------------------------------------------------------------------------------- /packages/playground-handbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/README.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Compiler Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Compiler Settings.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Examples.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Exporting Your Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Exporting Your Code.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/JS + DTS sidebars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/JS + DTS sidebars.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Localization.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Overview.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Running Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Running Code.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Settings Panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Settings Panel.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Twoslash Annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Twoslash Annotations.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Type Acquisition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Type Acquisition.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/TypeScript Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/TypeScript Versions.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/URL Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/URL Structure.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Writing DTS Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Writing DTS Files.md -------------------------------------------------------------------------------- /packages/playground-handbook/copy/en/Writing JavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/copy/en/Writing JavaScript.md -------------------------------------------------------------------------------- /packages/playground-handbook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/package.json -------------------------------------------------------------------------------- /packages/playground-handbook/scripts/generateJSON.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-handbook/scripts/generateJSON.mjs -------------------------------------------------------------------------------- /packages/playground-worker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-worker/README.md -------------------------------------------------------------------------------- /packages/playground-worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-worker/index.ts -------------------------------------------------------------------------------- /packages/playground-worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-worker/package.json -------------------------------------------------------------------------------- /packages/playground-worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-worker/tsconfig.json -------------------------------------------------------------------------------- /packages/playground-worker/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground-worker/types.d.ts -------------------------------------------------------------------------------- /packages/playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/.gitignore -------------------------------------------------------------------------------- /packages/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/README.md -------------------------------------------------------------------------------- /packages/playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/package.json -------------------------------------------------------------------------------- /packages/playground/scripts/getListOfPluginsFromNPM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/scripts/getListOfPluginsFromNPM.js -------------------------------------------------------------------------------- /packages/playground/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/ambient.d.ts -------------------------------------------------------------------------------- /packages/playground/src/createConfigDropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/createConfigDropdown.ts -------------------------------------------------------------------------------- /packages/playground/src/createElements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/createElements.ts -------------------------------------------------------------------------------- /packages/playground/src/createUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/createUI.ts -------------------------------------------------------------------------------- /packages/playground/src/ds/createDesignSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/ds/createDesignSystem.ts -------------------------------------------------------------------------------- /packages/playground/src/exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/exporter.ts -------------------------------------------------------------------------------- /packages/playground/src/getExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/getExample.ts -------------------------------------------------------------------------------- /packages/playground/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/index.ts -------------------------------------------------------------------------------- /packages/playground/src/localizeWithFallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/localizeWithFallback.ts -------------------------------------------------------------------------------- /packages/playground/src/monaco/ExampleHighlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/monaco/ExampleHighlight.ts -------------------------------------------------------------------------------- /packages/playground/src/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/navigation.ts -------------------------------------------------------------------------------- /packages/playground/src/pluginUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/pluginUtils.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/ast.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/fixtures/npmPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/fixtures/npmPlugins.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/plugins.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/runtime.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/settings.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/showDTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/showDTS.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/showErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/showErrors.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/showJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/showJS.ts -------------------------------------------------------------------------------- /packages/playground/src/sidebar/showTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/sidebar/showTypes.ts -------------------------------------------------------------------------------- /packages/playground/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/theme.ts -------------------------------------------------------------------------------- /packages/playground/src/twoslashInlays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/src/twoslashInlays.ts -------------------------------------------------------------------------------- /packages/playground/test/typeAcquisition.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/test/typeAcquisition.test.tsx -------------------------------------------------------------------------------- /packages/playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/playground/tsconfig.json -------------------------------------------------------------------------------- /packages/sandbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/.gitignore -------------------------------------------------------------------------------- /packages/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/README.md -------------------------------------------------------------------------------- /packages/sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/package.json -------------------------------------------------------------------------------- /packages/sandbox/script/downloadReleases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/script/downloadReleases.js -------------------------------------------------------------------------------- /packages/sandbox/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/ambient.d.ts -------------------------------------------------------------------------------- /packages/sandbox/src/compilerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/compilerOptions.ts -------------------------------------------------------------------------------- /packages/sandbox/src/createCompilerHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/createCompilerHost.ts -------------------------------------------------------------------------------- /packages/sandbox/src/getInitialCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/getInitialCode.ts -------------------------------------------------------------------------------- /packages/sandbox/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/index.ts -------------------------------------------------------------------------------- /packages/sandbox/src/monacoTSVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/monacoTSVersions.ts -------------------------------------------------------------------------------- /packages/sandbox/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/theme.ts -------------------------------------------------------------------------------- /packages/sandbox/src/tsWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/tsWorker.ts -------------------------------------------------------------------------------- /packages/sandbox/src/twoslashSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/twoslashSupport.ts -------------------------------------------------------------------------------- /packages/sandbox/src/vendor/lzstring.min.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/vendor/lzstring.min.d.ts -------------------------------------------------------------------------------- /packages/sandbox/src/vendor/lzstring.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/src/vendor/lzstring.min.js -------------------------------------------------------------------------------- /packages/sandbox/test/defaultCompilerOptions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/test/defaultCompilerOptions.test.ts -------------------------------------------------------------------------------- /packages/sandbox/test/twoslashSupport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/test/twoslashSupport.test.ts -------------------------------------------------------------------------------- /packages/sandbox/test/typeAcquisition.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/test/typeAcquisition.test.tsx -------------------------------------------------------------------------------- /packages/sandbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/tsconfig.json -------------------------------------------------------------------------------- /packages/sandbox/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/tsconfig.lib.json -------------------------------------------------------------------------------- /packages/sandbox/tsdx.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/sandbox/tsdx.config.js -------------------------------------------------------------------------------- /packages/ts-twoslasher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/.gitignore -------------------------------------------------------------------------------- /packages/ts-twoslasher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ts-twoslasher/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/ts-twoslasher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/LICENSE -------------------------------------------------------------------------------- /packages/ts-twoslasher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/README.md -------------------------------------------------------------------------------- /packages/ts-twoslasher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/package.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/scripts/inline-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/scripts/inline-results.js -------------------------------------------------------------------------------- /packages/ts-twoslasher/scripts/makeGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/scripts/makeGlobals.js -------------------------------------------------------------------------------- /packages/ts-twoslasher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/src/index.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/src/utils.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/src/validation.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/.prettierignore: -------------------------------------------------------------------------------- 1 | fixtures/**/*.ts 2 | -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/README.md -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/compiler_options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/compiler_options.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/custom_transformers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/custom_transformers.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/cutting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/cutting.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/compiler_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/compiler_errors.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/compiler_flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/compiler_flags.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/completions.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/cuts_out_unnecessary_code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/cuts_out_unnecessary_code.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/declarations.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/errorsWithGenerics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/errorsWithGenerics.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/highlighting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/highlighting.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/import_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/import_files.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/importsModules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/importsModules.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/multiFileErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/multiFileErrors.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/query.ts: -------------------------------------------------------------------------------- 1 | let foo = "hello there!"; 2 | // ^? 3 | -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/showEmit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/showEmit.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/arbitraryCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/arbitraryCommands.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/crossExports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/crossExports.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/cut_file_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/cut_file_errors.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/cut_files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/cut_files.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/emittedOutFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/emittedOutFile.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/handlesJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/handlesJSON.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/hidden_emit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/hidden_emit.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/inlineHighlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/inlineHighlights.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/jsx.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/large-cut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/large-cut.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/lib.ts: -------------------------------------------------------------------------------- 1 | // @lib: es2015 2 | const map = new Map>() 3 | -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/multiLookups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/multiLookups.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/preact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/preact.tsx -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/queriesWithSpaceBefore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/queriesWithSpaceBefore.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/queryHandlesNoToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/queryHandlesNoToken.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/removePrettierIgnore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/removePrettierIgnore.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/showEmit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/showEmit.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/showJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/showJS.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/tsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/tsx.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/tests/twoliner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/tests/twoliner.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/throws/multifile_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/throws/multifile_errors.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/throws/unexpected_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/throws/unexpected_errors.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/throws/unknown_compiler_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/throws/unknown_compiler_error.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/throws/unknown_compiler_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/fixtures/throws/unknown_compiler_value.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/fixtures/throws/unknown_extension.herjk: -------------------------------------------------------------------------------- 1 | // Should throw 2 | -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/highlights.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/highlights.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/modules.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/modules.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/queries.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/compiler_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/compiler_errors.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/compiler_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/compiler_flags.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/completions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/completions.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/declarations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/declarations.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/errorsWithGenerics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/errorsWithGenerics.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/highlighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/highlighting.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/import_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/import_files.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/importsModules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/importsModules.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/multiFileErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/multiFileErrors.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/multifile_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/multifile_errors.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/query.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/showEmit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/showEmit.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/arbitraryCommands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/arbitraryCommands.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/crossExports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/crossExports.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/cut_file_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/cut_file_errors.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/cut_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/cut_files.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/emittedOutFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/emittedOutFile.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/handlesJSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/handlesJSON.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/hidden_emit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/hidden_emit.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/inlineHighlights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/inlineHighlights.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/jsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/jsx.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/large-cut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/large-cut.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/lib.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/multiLookups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/multiLookups.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/noIndexInFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/noIndexInFiles.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/preact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/preact.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/queriesWithSpaceBefore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/queriesWithSpaceBefore.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/queryHandlesNoToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/queryHandlesNoToken.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/removePrettierIgnore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/removePrettierIgnore.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/showEmit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/showEmit.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/showJS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/showJS.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/tsx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/tsx.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/tests/twoliner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/tests/twoliner.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/unexpected_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/unexpected_errors.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/unknown_compiler_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/unknown_compiler_error.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/unknown_compiler_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/unknown_compiler_value.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/results/unknown_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/results/unknown_extension.json -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/tags.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/test/utils.test.ts -------------------------------------------------------------------------------- /packages/ts-twoslasher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/ts-twoslasher/tsconfig.json -------------------------------------------------------------------------------- /packages/tsconfig-reference/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/.gitignore -------------------------------------------------------------------------------- /packages/tsconfig-reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/README.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Advanced_Options_6178.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Advanced" 3 | --- 4 | 5 | Flags which help with debugging 6 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Backwards_Compatibility_6253.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Backwards Compatibility" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Basic_Options_6172.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/categories/Basic_Options_6172.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Command_line_Options_6171.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Command Line" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Compiler_Diagnostics_6251.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Compiler Diagnostics" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Completeness_6257.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Completeness" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Editor_Support_6249.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Editor Support" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Emit_6246.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Emit" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Interop_Constraints_6252.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Interop Constraints" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/JavaScript_Support_6247.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "JavaScript Support" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Language_and_Environment_6254.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Language and Environment" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Module_Resolution_Options_6174.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Module Resolution" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Modules_6244.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Modules" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Output_Formatting_6256.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Output Formatting" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Project_Files_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/categories/Project_Files_0.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Projects_6255.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Projects" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/categories/Type_Checking_6248.md: -------------------------------------------------------------------------------- 1 | --- 2 | display: "Type Checking" 3 | --- 4 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/cli/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/cli/help.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/intro.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/allowJs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/allowJs.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/allowUmdGlobalAccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/allowUmdGlobalAccess.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/allowUnreachableCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/allowUnreachableCode.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/allowUnusedLabels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/allowUnusedLabels.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/alwaysStrict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/alwaysStrict.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/baseUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/baseUrl.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/charset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/charset.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/checkJs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/checkJs.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/clean.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/composite.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/customConditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/customConditions.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/declaration.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/declarationDir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/declarationDir.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/declarationMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/declarationMap.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/diagnostics.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/disableSizeLimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/disableSizeLimit.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/downlevelIteration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/downlevelIteration.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/emitBOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/emitBOM.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/emitDeclarationOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/emitDeclarationOnly.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/emitDecoratorMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/emitDecoratorMetadata.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/enable.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/esModuleInterop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/esModuleInterop.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/exclude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/exclude.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/excludeDirectories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/excludeDirectories.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/excludeFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/excludeFiles.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/experimentalDecorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/experimentalDecorators.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/explainFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/explainFiles.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/extendedDiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/extendedDiagnostics.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/extends.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/fallbackPolling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/fallbackPolling.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/files.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/force.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/force.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/generateCpuProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/generateCpuProfile.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/importHelpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/importHelpers.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/importsNotUsedAsValues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/importsNotUsedAsValues.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/include.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/incremental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/incremental.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/inlineSourceMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/inlineSourceMap.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/inlineSources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/inlineSources.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/isolatedModules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/isolatedModules.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/jsx.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/jsxFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/jsxFactory.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/jsxFragmentFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/jsxFragmentFactory.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/jsxImportSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/jsxImportSource.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/keyofStringsOnly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/keyofStringsOnly.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/lib.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/listEmittedFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/listEmittedFiles.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/listFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/listFiles.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/locale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/locale.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/mapRoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/mapRoot.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/maxNodeModuleJsDepth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/maxNodeModuleJsDepth.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/module.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/moduleDetection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/moduleDetection.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/moduleResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/moduleResolution.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/moduleSuffixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/moduleSuffixes.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/newLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/newLine.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noEmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noEmit.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noEmitHelpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noEmitHelpers.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noEmitOnError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noEmitOnError.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noErrorTruncation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noErrorTruncation.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noImplicitAny.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noImplicitAny.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noImplicitOverride.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noImplicitOverride.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noImplicitReturns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noImplicitReturns.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noImplicitThis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noImplicitThis.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noImplicitUseStrict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noImplicitUseStrict.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noLib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noLib.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noResolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noResolve.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noStrictGenericChecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noStrictGenericChecks.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noUnusedLocals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noUnusedLocals.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/noUnusedParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/noUnusedParameters.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/out.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/outDir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/outDir.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/outFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/outFile.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/paths.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/plugins.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/preserveConstEnums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/preserveConstEnums.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/preserveSymlinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/preserveSymlinks.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/preserveValueImports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/preserveValueImports.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/preserveWatchOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/preserveWatchOutput.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/pretty.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/reactNamespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/reactNamespace.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/references.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/removeComments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/removeComments.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/resolveJsonModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/resolveJsonModule.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/rootDir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/rootDir.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/rootDirs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/rootDirs.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/skipDefaultLibCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/skipDefaultLibCheck.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/skipLibCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/skipLibCheck.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/sourceMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/sourceMap.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/sourceRoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/sourceRoot.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/strict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/strict.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/strictBindCallApply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/strictBindCallApply.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/strictFunctionTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/strictFunctionTypes.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/strictNullChecks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/strictNullChecks.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/stripInternal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/stripInternal.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/target.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/traceResolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/traceResolution.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/tsBuildInfoFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/tsBuildInfoFile.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/typeAcquisition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/typeAcquisition.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/typeAcquisition/exclude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/typeAcquisition/exclude.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/typeAcquisition/include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/typeAcquisition/include.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/typeRoots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/typeRoots.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/types.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/useDefineForClassFields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/useDefineForClassFields.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/verbatimModuleSyntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/verbatimModuleSyntax.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/verbose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/verbose.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/watchDirectory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/watchDirectory.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/options/watchFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/options/watchFile.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/sections/Top Level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/sections/Top Level.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/sections/buildOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/sections/buildOptions.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/sections/compilerOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/sections/compilerOptions.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/sections/typeAcquisition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/sections/typeAcquisition.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/copy/en/sections/watchOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/copy/en/sections/watchOptions.md -------------------------------------------------------------------------------- /packages/tsconfig-reference/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/data/_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/data/_types.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/output/.gitignore -------------------------------------------------------------------------------- /packages/tsconfig-reference/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/tsconfig-reference/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/package.json -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/cli/generateJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/cli/generateJSON.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/cli/generateMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/cli/generateMarkdown.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/lint.js -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/msbuild/generateJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/msbuild/generateJSON.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/msbuild/generateMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/msbuild/generateMarkdown.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/msbuild/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/msbuild/types.d.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/schema/downloadSchemaBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/schema/downloadSchemaBase.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/schema/exampleTsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/schema/exampleTsconfig.json -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/schema/generateJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/schema/generateJSON.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/schema/result/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/schema/result/schema.json -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/schema/vendor/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/schema/vendor/base.json -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/tsconfig/generateJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/tsconfig/generateJSON.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/tsconfig/generateMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/tsconfig/generateMarkdown.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/tsconfigRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/tsconfigRules.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/scripts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/scripts/types.ts -------------------------------------------------------------------------------- /packages/tsconfig-reference/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/tsconfig-reference/tsconfig.json -------------------------------------------------------------------------------- /packages/typescript-vfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/.gitignore -------------------------------------------------------------------------------- /packages/typescript-vfs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/CHANGELOG.md -------------------------------------------------------------------------------- /packages/typescript-vfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/LICENSE -------------------------------------------------------------------------------- /packages/typescript-vfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/README.md -------------------------------------------------------------------------------- /packages/typescript-vfs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/package.json -------------------------------------------------------------------------------- /packages/typescript-vfs/scripts/makeGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/scripts/makeGlobals.js -------------------------------------------------------------------------------- /packages/typescript-vfs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/src/index.ts -------------------------------------------------------------------------------- /packages/typescript-vfs/test/fsbacked.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/test/fsbacked.test.ts -------------------------------------------------------------------------------- /packages/typescript-vfs/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/test/index.test.ts -------------------------------------------------------------------------------- /packages/typescript-vfs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescript-vfs/tsconfig.json -------------------------------------------------------------------------------- /packages/typescriptlang-org/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/.gitignore -------------------------------------------------------------------------------- /packages/typescriptlang-org/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/.prettierrc -------------------------------------------------------------------------------- /packages/typescriptlang-org/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/README.md -------------------------------------------------------------------------------- /packages/typescriptlang-org/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/gatsby-browser.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/gatsby-config.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/gatsby-node.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/gatsby-ssr.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/bootup/createPages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/bootup/createPages.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/bootup/ingestion/languageFilter.ts: -------------------------------------------------------------------------------- 1 | export const isMultiLingual = !process.env.NO_TRANSLATIONS 2 | -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/bootup/pathsOnSiteTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/bootup/pathsOnSiteTracker.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/themes/themeGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/themes/themeGen.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/themes/typescript-beta-dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/themes/typescript-beta-dark.json -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/themes/typescript-beta-light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/themes/typescript-beta-light.json -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/utils/_invertCodeToHTML.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/utils/_invertCodeToHTML.test.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/utils/invertCodeToHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/utils/invertCodeToHTML.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/lib/utils/recursiveReadDirSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/lib/utils/recursiveReadDirSync.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/package.json -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/backstop/makeDarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/backstop/makeDarkMode.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/cacheBustPlayground.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/cacheBustPlayground.mjs -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/createLighthouseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/createLighthouseJSON.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/downloadPlaygroundAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/downloadPlaygroundAssets.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/downloadSearchAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/downloadSearchAssets.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/ensureDepsAreBuilt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/ensureDepsAreBuilt.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/getTypeScriptNPMVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/getTypeScriptNPMVersions.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/makeMarkdownForAppInsights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/makeMarkdownForAppInsights.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/pingTeamsWithAppInsightData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/pingTeamsWithAppInsightData.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/setupStaging.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/setupStaging.mjs -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/updateAppInsightsGitHubIssue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/updateAppInsightsGitHubIssue.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/scripts/updateIndexTwoslashExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/scripts/updateIndexTwoslashExamples.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/community/connect-discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/community/connect-discord.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/community/connect-gitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/community/connect-gitter.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/index/code-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/index/code-dark.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/index/code-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/index/code-light.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/index/handbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/index/handbook.jpg -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/index/play-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/index/play-dark.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/index/play-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/index/play-light.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/microsoft-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/microsoft-logo.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/playground-plugin-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/playground-plugin-preview.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/assets/v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/assets/v3.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/HeadSEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/HeadSEO.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/Intl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/Intl.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/IntlLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/IntlLink.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/Popup.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/QuickJump.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/QuickJump.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/ShowExamples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/ShowExamples.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/ShowExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/ShowExamples.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/SuppressWhenTouch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/SuppressWhenTouch.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/TmpLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/TmpLink.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/VersionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/VersionBar.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/devNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/devNav.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/display/ButtonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/display/ButtonGrid.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/display/GreyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/display/GreyButton.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/handbook/Contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/handbook/Contributors.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/handbook/NextPrev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/handbook/NextPrev.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/AboveTheFold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/AboveTheFold.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/AdoptSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/AdoptSteps.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/EditorExamples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/EditorExamples.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/twoslash/JSDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/twoslash/JSDoc.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/twoslash/TS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/twoslash/TS.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/twoslash/cfa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/twoslash/cfa.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/index/twoslash/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/index/twoslash/react.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/CookieBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/CookieBanner.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/Sidebar.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/Sidebar.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/SiteFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/SiteFooter.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/SiteFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/SiteFooter.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/TopNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/TopNav.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/TopNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/TopNav.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/cookie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/cookie.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/fonts.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/layout/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/layout/main.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/svgs/documentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/svgs/documentation.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/components/workbench/plugins/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/components/workbench/plugins/docs.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/.gitignore -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/cheatsheets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/cheatsheets.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/community.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/community.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/documentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/documentation.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/dt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/dt.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/en.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/footer.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/handbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/handbook.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/head-seo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/head-seo.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/index.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/index2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/index2.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/nav.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/en/playground.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/en/tsconfig.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/copy/inYourLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/copy/inYourLanguage.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/dom.d.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/createInternational.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/createInternational.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/documentationNavigationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/documentationNavigationUtils.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/hasLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/hasLocalStorage.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/isTouchDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/isTouchDevice.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/playgroundURLs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/playgroundURLs.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/release-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/release-plan.json -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/lib/whenEscape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/lib/whenEscape.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/README.md -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/branding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/branding.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/branding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/branding.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/bug-workbench.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/bug-workbench.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/dev.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/dev.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/playground-plugins.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/playground-plugins.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/sandbox.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/twoslash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/twoslash.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/pages/dev/typescript-vfs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/pages/dev/typescript-vfs.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/redirects/setupRedirects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/redirects/setupRedirects.ts -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/style/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/style/globals.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/style/theme.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/style/theme.jsonc -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/documentation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/documentation.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/documentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/documentation.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/glossary.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/glossary.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/glossary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/glossary.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/markdown-twoslash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/markdown-twoslash.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/markdown.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/cheatsheets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/cheatsheets.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/community.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/css/cheatsheets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/css/cheatsheets.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/css/community.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/css/community.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/css/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/css/grid.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/css/index.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/css/tools.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/css/tools.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/docs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/docs/index.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/download.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/dt/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/dt/search.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/empty.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/index.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/pages/tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/pages/tools.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/play-example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/play-example.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/play.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/play.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/play.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/playgroundHandbook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/playgroundHandbook.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/tsconfig.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/tsconfig.scss -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/tsconfigOptionOnePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/tsconfigOptionOnePage.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/src/templates/tsconfigReference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/src/templates/tsconfigReference.tsx -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/.gitattributes -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/License.html -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/Web.config -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/palette.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-lettermark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-lettermark-blue.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-lettermark-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-lettermark-blue.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-lettermark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-lettermark-white.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-lettermark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-lettermark-white.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-128.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-128.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-256.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-256.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-512.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-512.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-128.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-128.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-256.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-256.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-512.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/branding/ts-logo-round-512.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/branding/ts-logo-round-512.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/css/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/css/docsearch.css -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/favicon.ico -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/fonts/DankMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/fonts/DankMono-Regular.woff2 -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/fonts/FiraCode-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/fonts/FiraCode-Regular.woff2 -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/fonts/JetBrainsMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/fonts/JetBrainsMono-Regular.woff2 -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/fonts/OpenDyslexic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/fonts/OpenDyslexic-Regular.woff -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/fonts/SourceCodePro-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/fonts/SourceCodePro-Regular.woff2 -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/icons/ts-logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/icons/ts-logo-512.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/logo-grouping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/logo-grouping.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/logos.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/palette-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/palette-bg.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/palette.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/two-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/two-colors.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/branding/two-longform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/branding/two-longform.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/docs/greet_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/docs/greet_person.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/stack-overflow.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/state-of-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/state-of-js.svg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/ts-at-scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/ts-at-scale.jpg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/ts-conf-keynote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/ts-conf-keynote.jpg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/what-is-new-ts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/what-is-new-ts.jpg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/index/wrong-ts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/index/wrong-ts.jpg -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tools/cheat-sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tools/cheat-sheets.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tools/dt-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tools/dt-search.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tools/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tools/play.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tools/tsconfig-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tools/tsconfig-ref.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tutorials/aspnet/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tutorials/aspnet/npm.png -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/images/tutorials/aspnet/tsgif.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/images/tutorials/aspnet/tsgif.mov -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/js/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/js/docsearch.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/js/vs.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/js/vs.loader.js -------------------------------------------------------------------------------- /packages/typescriptlang-org/static/js/vs.loader.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/static/js/vs.loader.js.map -------------------------------------------------------------------------------- /packages/typescriptlang-org/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/packages/typescriptlang-org/tsconfig.json -------------------------------------------------------------------------------- /serve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/serve/README.md -------------------------------------------------------------------------------- /serve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/serve/index.js -------------------------------------------------------------------------------- /serve/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/serve/package-lock.json -------------------------------------------------------------------------------- /serve/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/serve/package.json -------------------------------------------------------------------------------- /serve/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/serve/public/index.html -------------------------------------------------------------------------------- /spellcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/spellcheck.json -------------------------------------------------------------------------------- /test/fixtures/old-site-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/test/fixtures/old-site-map.ts -------------------------------------------------------------------------------- /test/verifyPackageVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/test/verifyPackageVersions.js -------------------------------------------------------------------------------- /watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/watcher.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/super-dev03/types-web/HEAD/yarn.lock --------------------------------------------------------------------------------