1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Update build command in docs (#5569)

This commit is contained in:
petitpandarouge
2024-04-29 12:38:39 +02:00
committed by GitHub
parent a1710b17c8
commit bd5eee4a9e

View File

@@ -32,13 +32,13 @@ npm install --save-dev typescript
- Compile your TypeScript code using the following command:
```bash
tsc
npx tsc
```
Note: You can also compile individual TypeScript files by specifying the file name after the tsc command. For example:
Note: You can also compile individual TypeScript files by specifying the file path after the tsc command. For example:
```bash
tsc index.ts
npx tsc ./src/index.ts
```
And you're all set! You can now start writing TypeScript code in your project.