- TypeScript Tutorial
- TypeScript Home
- TypeScript Introduction
- TypeScript Setup
- TypeScript First Program
- TypeScript vs JavaScript
- TypeScript Data Types
- TypeScript Type Inference
- TypeScript Type Annotations
- TypeScript Interfaces
- TypeScript Enums
- TypeScript Type Aliases
- TypeScript Type Assertions
- TypeScript Variables
- TypeScript Functions
- TypeScript Functions
- TypeScript Optional Parameters
- TypeScript Default Parameters
- TypeScript Rest Parameters
- TypeScript Arrow Functions
- Classes and Objects
- Introduction to Classes
- Properties and Methods
- Access Modifiers
- Static Members
- Inheritance
- Abstract Classes
- Interfaces vs Classes
- Advanced Types
- TypeScript Union Types
- TypeScript Intersection Types
- TypeScript Literal Types
- TypeScript Nullable Types
- TypeScript Type Guards
- TypeScript Discriminated Unions
- TypeScript Index Signatures
- TypeScript Generics
- Introduction to Generics
- TypeScript Generic Functions
- TypeScript Generic Classes
- TypeScript Generic Constraints
- TypeScript Modules
- Introduction to Modules
- TypeScript Import and Export
- TypeScript Default Exports
- TypeScript Namespace
- Decorators
- Introduction to Decorators
- TypeScript Class Decorators
- TypeScript Method Decorators
- TypeScript Property Decorators
- TypeScript Parameter Decorators
- Configuration
- TypeScript tsconfig.json File
- TypeScript Compiler Options
- TypeScript Strict Mode
- TypeScript Watch Mode
TypeScript Setup
Setting up TypeScript involves installing it and configuring the environment to compile and run TypeScript files efficiently.
Prerequisites
- Node.js Installed: Ensure Node.js is installed on your system.
- Code Editor: Use an editor like VS Code for better TypeScript support.
Steps to Install TypeScript
Install TypeScript via npm
Run the following command to install TypeScript globally:
npm install -g typescript
Verify the installation:
tsc --version
Initialize a TypeScript Project
Create a tsconfig.json
file using:
tsc --init
This file contains configuration options for TypeScript.
Write Your First TypeScript File
Create a file named app.ts
and add some TypeScript code:
const greet = (name: string): string => {
return `Hello, ${name}`;
};
console.log(greet("TypeScript"));
Compile TypeScript to JavaScript
Compile the file using:
tsc app.ts
This generates a corresponding JavaScript file (app.js
).
Run the Compiled JavaScript File
Execute the file with Node.js:
node app.js
Summary
Setting up TypeScript involves installing it via npm, creating a project configuration, and compiling .ts
files into JavaScript. This streamlined setup enables efficient development with TypeScript.