console.log("\nđź“‹ All tasks:"); manager.printTasks();

It’s TypeScript at its core: types, interfaces, enums, modern ES features, and strict type-checking — .

Pure TypeScript strips away the noise and gives you just the compiler and the type system. It’s ideal for learning, scripting, building robust backend services, or creating libraries that will be consumed by any JavaScript environment.

// Primitives let isDone: boolean = false; let decimal: number = 6; let hex: number = 0xf00d; let color: string = "blue";