--- name: typescript-tooling-migration description: Migrate or upgrade TypeScript tooling in the Phoenix monorepo. Use when upgrading TypeScript versions, switching tools (ESLint to oxlint, Prettier to oxfmt), upgrading bundlers (Vite, esbuild), or making major dependency upgrades. Triggers on requests to migrate, upgrade, or replace TypeScript/JavaScript tooling. license: Apache-2.0 metadata: author: oss@arize.com version: "1.0.0" languages: TypeScript internal: true --- # TypeScript Tooling Migration Guide for migrating or upgrading TypeScript tooling in the Phoenix monorepo. This skill covers upgrading core dependencies (TypeScript, React), switching tools (linters, formatters, bundlers), and managing breaking changes across `app/` and `js/` directories. ## Monorepo Structure Phoenix has two TypeScript project directories that must stay in sync: | Directory | Purpose | Package Manager | |-----------|---------|-----------------| | `app/` | React/TypeScript frontend (main Phoenix UI) | pnpm | | `js/` | TypeScript packages monorepo (phoenix-client, phoenix-evals, etc.) | pnpm (workspace) | ### Shared Dependencies Both directories should use the same versions of shared tooling: | Tool | Sync Enforced | Config Location | |------|---------------|-----------------| | pnpm | CI check | `package.json` → `packageManager` | | TypeScript | CI check | `package.json` → `devDependencies` | | oxlint | CI check | `package.json` → `devDependencies` | | oxfmt | CI check | `package.json` → `devDependencies` | ### Config File Locations | Config | Location | Purpose | |--------|----------|---------| | `.oxlintrc.json` | Root + `app/` + `js/` | Linter config (nested inheritance) | | `.oxfmtrc.jsonc` | Root | Formatter config (shared) | | `tsconfig.json` | `app/` and `js/` packages | TypeScript config | | `vite.config.ts` | `app/` | Build/dev server config | | `relay.config.js` | `app/` | GraphQL/Relay config | ## Migration Types ### Type 1: Tool Replacement (e.g., ESLint → oxlint) Complete replacement of one tool with another. **Workflow:** 1. Research new tool's migration guide 2. Install new tool alongside old 3. Create new config, verify it works 4. Update package scripts 5. Update pre-commit hooks 6. Remove old tool and config 7. Update documentation ### Type 2: Major Version Upgrade (e.g., TypeScript 5 → 6) Upgrading a tool to a new major version with breaking changes. **Workflow:** 1. Read changelog/migration guide for breaking changes 2. Check compatibility of dependent packages 3. Upgrade in a branch, fix breaking changes 4. Run full test suite 5. Update any deprecated config options 6. Update documentation if APIs changed ### Type 3: Dependency Upgrade (e.g., React 18 → 19) Upgrading a core dependency that affects application code. **Workflow:** 1. Check compatibility matrix (React + React DOM + types) 2. Review breaking changes and new features 3. Upgrade dependencies together 4. Fix breaking changes in application code 5. Update any deprecated patterns 6. Run E2E tests to verify functionality ## Migration Workflow ### Phase 1: Research and Planning 1. **Read official migration guides** - Most tools publish upgrade guides 2. **Check GitHub issues** - Look for known migration problems 3. **Identify scope:** - Which directories affected (`app/`, `js/`, or both) - What config files need changes - What dependencies to add/remove/upgrade - What code changes are required 4. **Review current configs** - Understand existing setup before changing 5. **Check dependent packages** - Ensure compatibility across the dependency tree ### Phase 2: Create a Migration Branch ```bash git checkout -b chore/migrate--to- # or git checkout -b chore/upgrade-- ``` ### Phase 3: Install/Upgrade Dependencies ```bash # For app/ (standard project) cd app && pnpm add -D @ # For js/ (workspace root) cd js && pnpm add -D -w @ # For upgrading existing dependencies cd app && pnpm update @ ``` **Tip:** Keep old tool installed until migration is verified for tool replacements. ### Phase 4: Update Configuration #### For tool replacements - create new config: Phoenix uses **nested configs with inheritance** where possible: ``` phoenix/ ├── .rc.json # Shared base config ├── app/ │ └── .rc.json # Extends base, adds React-specific options └── js/ └── .rc.json # Extends base, adds Node-specific options ``` **Config inheritance pattern:** ```json { "$schema": "./node_modules//configuration_schema.json", "extends": ["../.rc.json"] } ``` #### For version upgrades - update existing config: 1. Check for deprecated options in the changelog 2. Update or remove deprecated settings 3. Add any new required settings ### Phase 5: Fix Breaking Changes #### Code changes: - Fix type errors from stricter checks - Update deprecated API usage - Adapt to new syntax requirements #### Config changes: - Update deprecated config options - Adjust for changed defaults **Tip:** Use the tool's own CLI to identify issues: ```bash pnpm run typecheck # TypeScript errors pnpm run lint # Linter errors pnpm run build # Build errors ``` ### Phase 6: Update Package Scripts Update both `app/package.json` and `js/package.json` if script invocations changed: ```json { "scripts": { "lint": "", "typecheck": "" } } ``` ### Phase 7: Update Pre-commit Hooks Edit `.pre-commit-config.yaml` if the tool is used in pre-commit: 1. Remove old tool's hook (for replacements) 2. Update or add new hook: ```yaml - id: -app name: (app) entry: pnpm --dir app run