tsc: add watch mode instruction (#14288)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Azriel Stephen Christian Barla
2024-10-20 20:30:17 +05:30
committed by GitHub
parent 730185e6cf
commit 2d3c9df5d7

View File

@@ -26,3 +26,7 @@
- Type-check multiple JavaScript files, and output only the errors:
`tsc --allowJs --checkJs --noEmit {{src/**/*.js}}`
- Run the compiler in watch mode, which automatically recompiles code when it changes:
`tsc --watch`