docs: Fix ts-node-dev flag in the docs (#529)

It has been renamed: https://github.com/whitecolor/ts-node-dev/issues/186
This commit is contained in:
Kirill Korolyov 2020-10-03 22:31:36 +01:00 committed by GitHub
parent 85bf467cde
commit 489b5ab94f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ You will need to manage running and restarting your server on changes during dev
```tsx
{
"scripts": {
"dev": "ts-node-dev --transpileOnly ./your/main/module",
"dev": "ts-node-dev --transpile-only ./your/main/module",
"dev:typecheck": "tsc --noEmit --watch",
}
}