# TypeScript Deep Dive 日本語版

## TypeScript Deep Dive 日本語版

- [TypeScript Deep Dive 日本語版](https://typescript-jp.gitbook.io/deep-dive/readme.md)
- [TypeScript入門 & 環境構築](https://typescript-jp.gitbook.io/deep-dive/getting-started.md)
- [なぜTypeScriptを使うのか？](https://typescript-jp.gitbook.io/deep-dive/getting-started/why-typescript.md)
- [JavaScript](https://typescript-jp.gitbook.io/deep-dive/recap.md)
- [等価演算子の同一性](https://typescript-jp.gitbook.io/deep-dive/recap/equality.md)
- [リファレンス](https://typescript-jp.gitbook.io/deep-dive/recap/references.md)
- [nullとundefined](https://typescript-jp.gitbook.io/deep-dive/recap/null-undefined.md)
- [this](https://typescript-jp.gitbook.io/deep-dive/recap/this.md)
- [クロージャ](https://typescript-jp.gitbook.io/deep-dive/recap/closure.md)
- [Number型](https://typescript-jp.gitbook.io/deep-dive/recap/number.md)
- [Truthy](https://typescript-jp.gitbook.io/deep-dive/recap/truthy.md)
- [モダンなJavaScriptの機能](https://typescript-jp.gitbook.io/deep-dive/future-javascript.md)
- [クラス](https://typescript-jp.gitbook.io/deep-dive/future-javascript/classes.md)
- [Classes Emit](https://typescript-jp.gitbook.io/deep-dive/future-javascript/classes/classes-emit.md)
- [アロー関数](https://typescript-jp.gitbook.io/deep-dive/future-javascript/arrow-functions.md)
- [残余引数（Restパラメータ）](https://typescript-jp.gitbook.io/deep-dive/future-javascript/rest-parameters.md)
- [let](https://typescript-jp.gitbook.io/deep-dive/future-javascript/let.md)
- [const](https://typescript-jp.gitbook.io/deep-dive/future-javascript/const.md)
- [分割代入](https://typescript-jp.gitbook.io/deep-dive/future-javascript/destructuring.md)
- [スプレッド演算子](https://typescript-jp.gitbook.io/deep-dive/future-javascript/spread-operator.md)
- [for...of](https://typescript-jp.gitbook.io/deep-dive/future-javascript/for...of.md)
- [Iterator](https://typescript-jp.gitbook.io/deep-dive/future-javascript/iterators.md)
- [テンプレートリテラル](https://typescript-jp.gitbook.io/deep-dive/future-javascript/template-strings.md)
- [Promise](https://typescript-jp.gitbook.io/deep-dive/future-javascript/promise.md)
- [ジェネレータ](https://typescript-jp.gitbook.io/deep-dive/future-javascript/generators.md)
- [async await](https://typescript-jp.gitbook.io/deep-dive/future-javascript/async-await.md)
- [プロジェクトの環境設定](https://typescript-jp.gitbook.io/deep-dive/project.md)
- [コンパイルコンテキスト](https://typescript-jp.gitbook.io/deep-dive/project/compilation-context.md)
- [tsconfig.json](https://typescript-jp.gitbook.io/deep-dive/project/compilation-context/tsconfig.md)
- [コンパイル対象ファイルの設定](https://typescript-jp.gitbook.io/deep-dive/project/compilation-context/files.md)
- [宣言空間](https://typescript-jp.gitbook.io/deep-dive/project/declarationspaces.md)
- [ファイルモジュール](https://typescript-jp.gitbook.io/deep-dive/project/modules.md)
- [ファイルモジュールの詳細](https://typescript-jp.gitbook.io/deep-dive/project/modules/external-modules.md)
- [global.d.ts](https://typescript-jp.gitbook.io/deep-dive/project/modules/globals.md)
- [名前空間](https://typescript-jp.gitbook.io/deep-dive/project/namespaces.md)
- [動的インポート](https://typescript-jp.gitbook.io/deep-dive/project/dynamic-import-expressions.md)
- [Node.js & TypeScriptのプロジェクト作成](https://typescript-jp.gitbook.io/deep-dive/nodejs.md)
- [React & TypeScriptのプロジェクト作成](https://typescript-jp.gitbook.io/deep-dive/browser.md)
- [TypeScriptの型システム](https://typescript-jp.gitbook.io/deep-dive/type-system.md)
- [JavaScriptからの移行ガイド](https://typescript-jp.gitbook.io/deep-dive/type-system/migrating.md)
- [@types パッケージ (DefinitelyTyped)](https://typescript-jp.gitbook.io/deep-dive/type-system/types.md)
- [アンビエント宣言(declare)](https://typescript-jp.gitbook.io/deep-dive/type-system/intro.md)
- [型定義ファイル](https://typescript-jp.gitbook.io/deep-dive/type-system/intro/d.ts.md)
- [グローバル変数の宣言](https://typescript-jp.gitbook.io/deep-dive/type-system/intro/variables.md)
- [インターフェース](https://typescript-jp.gitbook.io/deep-dive/type-system/interfaces.md)
- [Enum](https://typescript-jp.gitbook.io/deep-dive/type-system/enums.md)
- [lib.d.ts](https://typescript-jp.gitbook.io/deep-dive/type-system/lib.d.ts.md)
- [関数の型](https://typescript-jp.gitbook.io/deep-dive/type-system/functions.md)
- [呼び出し可能オブジェクト](https://typescript-jp.gitbook.io/deep-dive/type-system/callable.md)
- [Type Assertion（型アサーション）](https://typescript-jp.gitbook.io/deep-dive/type-system/type-assertion.md)
- [Freshness](https://typescript-jp.gitbook.io/deep-dive/type-system/freshness.md)
- [型ガード](https://typescript-jp.gitbook.io/deep-dive/type-system/typeguard.md)
- [リテラル型](https://typescript-jp.gitbook.io/deep-dive/type-system/literal-types.md)
- [Readonly](https://typescript-jp.gitbook.io/deep-dive/type-system/readonly.md)
- [ジェネリック型](https://typescript-jp.gitbook.io/deep-dive/type-system/generics.md)
- [型推論](https://typescript-jp.gitbook.io/deep-dive/type-system/type-inference.md)
- [型の互換性](https://typescript-jp.gitbook.io/deep-dive/type-system/type-compatibility.md)
- [never](https://typescript-jp.gitbook.io/deep-dive/type-system/never.md)
- [判別可能なUnion型](https://typescript-jp.gitbook.io/deep-dive/type-system/discriminated-unions.md)
- [Index signature（インデックス型）](https://typescript-jp.gitbook.io/deep-dive/type-system/index-signatures.md)
- [型の移動](https://typescript-jp.gitbook.io/deep-dive/type-system/moving-types.md)
- [例外のハンドリング](https://typescript-jp.gitbook.io/deep-dive/type-system/exceptions.md)
- [ミックスイン](https://typescript-jp.gitbook.io/deep-dive/type-system/mixins.md)
- [JSX](https://typescript-jp.gitbook.io/deep-dive/tsx.md)
- [React](https://typescript-jp.gitbook.io/deep-dive/tsx/react.md)
- [React以外のJSX](https://typescript-jp.gitbook.io/deep-dive/tsx/others.md)
- [オプション](https://typescript-jp.gitbook.io/deep-dive/intro.md)
- [noImplicitAny](https://typescript-jp.gitbook.io/deep-dive/intro/noimplicitany.md)
- [strictNullChecks](https://typescript-jp.gitbook.io/deep-dive/intro/strictnullchecks.md)
- [TypeScriptのエラー](https://typescript-jp.gitbook.io/deep-dive/main.md)
- [エラーの理解](https://typescript-jp.gitbook.io/deep-dive/main/interpreting-errors.md)
- [一般的なエラー](https://typescript-jp.gitbook.io/deep-dive/main/common-errors.md)
- [NPM](https://typescript-jp.gitbook.io/deep-dive/index.md)
- [テスト](https://typescript-jp.gitbook.io/deep-dive/intro-1.md)
- [Jest](https://typescript-jp.gitbook.io/deep-dive/intro-1/jest.md)
- [Cypress](https://typescript-jp.gitbook.io/deep-dive/intro-1/cypress.md)
- [ツール](https://typescript-jp.gitbook.io/deep-dive/intro-2.md)
- [Prettier](https://typescript-jp.gitbook.io/deep-dive/intro-2/prettier.md)
- [Husky](https://typescript-jp.gitbook.io/deep-dive/intro-2/husky.md)
- [Changelog](https://typescript-jp.gitbook.io/deep-dive/intro-2/changelog.md)
- [その他のヒント](https://typescript-jp.gitbook.io/deep-dive/main-1.md)
- [String Based Enums](https://typescript-jp.gitbook.io/deep-dive/main-1/stringenums.md)
- [Nominal Typing](https://typescript-jp.gitbook.io/deep-dive/main-1/nominaltyping.md)
- [Stateful Functions](https://typescript-jp.gitbook.io/deep-dive/main-1/statefulfunctions.md)
- [Bind is Bad](https://typescript-jp.gitbook.io/deep-dive/main-1/bind.md)
- [Currying](https://typescript-jp.gitbook.io/deep-dive/main-1/currying.md)
- [Type Instantiation](https://typescript-jp.gitbook.io/deep-dive/main-1/typeinstantiation.md)
- [Lazy Object Literal Initialization](https://typescript-jp.gitbook.io/deep-dive/main-1/lazyobjectliteralinitialization.md)
- [Classes are Useful](https://typescript-jp.gitbook.io/deep-dive/main-1/classesareuseful.md)
- [Avoid Export Default](https://typescript-jp.gitbook.io/deep-dive/main-1/defaultisbad.md)
- [Limit Property Setters](https://typescript-jp.gitbook.io/deep-dive/main-1/propertysetters.md)
- [outFile caution](https://typescript-jp.gitbook.io/deep-dive/main-1/outfile.md)
- [JQuery tips](https://typescript-jp.gitbook.io/deep-dive/main-1/jquery.md)
- [static constructors](https://typescript-jp.gitbook.io/deep-dive/main-1/staticconstructor.md)
- [singleton pattern](https://typescript-jp.gitbook.io/deep-dive/main-1/singleton.md)
- [Function parameters](https://typescript-jp.gitbook.io/deep-dive/main-1/functionparameters.md)
- [Build Toggles](https://typescript-jp.gitbook.io/deep-dive/main-1/build-toggles.md)
- [Barrel](https://typescript-jp.gitbook.io/deep-dive/main-1/barrel.md)
- [Create Arrays](https://typescript-jp.gitbook.io/deep-dive/main-1/create-arrays.md)
- [Typesafe Event Emitter](https://typescript-jp.gitbook.io/deep-dive/main-1/typed-event.md)
- [スタイルガイド（コーディング規約）](https://typescript-jp.gitbook.io/deep-dive/styleguide.md)
- [TypeScriptコンパイラの内側](https://typescript-jp.gitbook.io/deep-dive/overview.md)
- [Program](https://typescript-jp.gitbook.io/deep-dive/overview/program.md)
- [AST](https://typescript-jp.gitbook.io/deep-dive/overview/ast.md)
- [TIP: Visit Children](https://typescript-jp.gitbook.io/deep-dive/overview/ast/ast-tip-children.md)
- [TIP: SyntaxKind enum](https://typescript-jp.gitbook.io/deep-dive/overview/ast/ast-tip-syntaxkind.md)
- [Trivia](https://typescript-jp.gitbook.io/deep-dive/overview/ast/ast-trivia.md)
- [Scanner](https://typescript-jp.gitbook.io/deep-dive/overview/scanner.md)
- [Parser](https://typescript-jp.gitbook.io/deep-dive/overview/parser.md)
- [Parser Functions](https://typescript-jp.gitbook.io/deep-dive/overview/parser/parser-functions.md)
- [Binder](https://typescript-jp.gitbook.io/deep-dive/overview/binder.md)
- [Binder Functions](https://typescript-jp.gitbook.io/deep-dive/overview/binder/binder-functions.md)
- [Binder Declarations](https://typescript-jp.gitbook.io/deep-dive/overview/binder/binder-declarations.md)
- [Binder Container](https://typescript-jp.gitbook.io/deep-dive/overview/binder/binder-container.md)
- [Binder SymbolTable](https://typescript-jp.gitbook.io/deep-dive/overview/binder/binder-symboltable.md)
- [Binder Error Reporting](https://typescript-jp.gitbook.io/deep-dive/overview/binder/binder-diagnostics.md)
- [Checker](https://typescript-jp.gitbook.io/deep-dive/overview/checker.md)
- [Checker Diagnostics](https://typescript-jp.gitbook.io/deep-dive/overview/checker/checker-global.md)
- [Checker Error Reporting](https://typescript-jp.gitbook.io/deep-dive/overview/checker/checker-diagnostics.md)
- [Emitter](https://typescript-jp.gitbook.io/deep-dive/overview/emitter.md)
- [Emitter Functions](https://typescript-jp.gitbook.io/deep-dive/overview/emitter/emitter-functions.md)
- [Emitter SourceMaps](https://typescript-jp.gitbook.io/deep-dive/overview/emitter/emitter-sourcemaps.md)
- [Contributing](https://typescript-jp.gitbook.io/deep-dive/overview/contributing.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information, you can query the documentation dynamically by asking a question.
Perform an HTTP GET request on a page URL with the `ask` query parameter:
```
GET https://typescript-jp.gitbook.io/deep-dive/readme.md?ask=<question>
```
The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.
Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
