AltraTools
🔷

TSConfig Generator

Generate tsconfig.json for TypeScript projects

Presets

Module System

Libraries

Type Checking

Interop & Emit

Include / Exclude

Output

tsconfig.json
{
  "compilerOptions": {
    "target": "ES2022",
    "module": "ESNext",
    "moduleResolution": "bundler",
    "lib": [
      "ES2022"
    ],
    "strict": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true
  },
  "include": [
    "src/**/*"
  ]
}

TSConfig Generator

Generate tsconfig.json configuration files with a visual interface. Choose from presets for Node.js, React, Next.js, or create custom configurations.

Features

  • Presets for Node.js, React, Next.js, Libraries
  • All compiler options with explanations
  • Lib selection for browser/node environments
  • Include/exclude pattern configuration