TanStack Router
create-tsrouter-app
code:directory
tanstack-sampleapp2/
├── .cta.json # TanStack Create Appの設定ファイル
├── .gitignore # Gitの無視ファイル設定
├── index.html # エントリーポイントのHTMLファイル
├── package.json # 依存関係と実行スクリプトの設定
├── pnpm-lock.yaml # pnpmのロックファイル
├── README.md # プロジェクト説明書
├── tsconfig.json # TypeScript設定
├── vite.config.js # Vite設定ファイル
├── .vscode/
│ └── settings.json # VSCode設定
├── public/ # 静的ファイル
│ ├── favicon.ico # ファビコン
│ ├── logo192.png # ロゴ画像(小)
│ ├── logo512.png # ロゴ画像(大)
│ ├── manifest.json # PWAマニフェスト
│ └── robots.txt # クローラー設定
└── src/ # ソースコード
├── logo.svg # SVGロゴ
├── main.tsx # メインエントリーポイント
├── reportWebVitals.ts # Webパフォーマンス測定
├── routeTree.gen.ts # 自動生成されたルート設定
├── styles.css # グローバルスタイル
└── routes/ # TanStackルーター用ファイル
├── __root.tsx # ルートレイアウト
└── index.tsx # トップページ
#typescript #node.js