#346·bases

Add TanStack Start tsconfig base

Author: moshieCreated Feb 11, 2026Updated Feb 11, 2026

https://tanstack.com/start is a full-stack React framework built on TanStack Router and Vinxi. It would be helpful to have a dedicated tsconfig base for TanStack Start projects.

Proposed Configuration

Based on TanStack Start's requirements, the base should include:

json
{
    "$schema": "https://json.schemastore.org/tsconfig",
    "display": "TanStack Start",
    "_version": "1.0.0",
    "compilerOptions": {
      "target": "ES2022",
      "lib": ["ES2022", "DOM", "DOM.Iterable"],
      "module": "ESNext",
      "moduleResolution": "Bundler",
      "jsx": "react-jsx",
      "strict": true,
      "skipLibCheck": true,
      "esModuleInterop": true,
      "isolatedModules": true,
      "noEmit": true,
      "resolveJsonModule": true,
      "allowImportingTsExtensions": true,
      "verbatimModuleSyntax": false
    }
  }