Skip to main content
DevTools24

Generatore tsconfig.json

Genera tsconfig.json.

TypeScript Configuration - Dettagli tecnici

tsconfig.json configures the TypeScript compiler. Key options include target (ES version), module (module system), strict (type checking), and paths (import aliases). Use extends to inherit from base configurations.

Alternativa da riga di comando

# Initialize tsconfig.json\nnpx tsc --init\n\n# Compile with options\nnpx tsc --strict --noEmit

Riferimento

Visualizza specifica ufficiale