Update build command in docs (#5569)

pull/5577/head
petitpandarouge 10 months ago committed by GitHub
parent a1710b17c8
commit bd5eee4a9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      src/data/roadmaps/typescript/content/100-typescript/102-install-configure/index.md

@ -32,13 +32,13 @@ npm install --save-dev typescript
- Compile your TypeScript code using the following command: - Compile your TypeScript code using the following command:
```bash ```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 ```bash
tsc index.ts npx tsc ./src/index.ts
``` ```
And you're all set! You can now start writing TypeScript code in your project. And you're all set! You can now start writing TypeScript code in your project.

Loading…
Cancel
Save