From 60a96930d0a18c9f5a36fb688ea1017e1c4c2568 Mon Sep 17 00:00:00 2001 From: Thomas Jammet Date: Fri, 26 Apr 2024 09:58:42 +0200 Subject: [PATCH] docs(readme): small changes to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e9a2e1..420d5c2 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ import * as WebRTC from '@ceeblue/webrtc-client'; > 💡 **TIP** > > If your project uses [TypeScript](https://www.typescriptlang.org/), it is recommended to set `"target": "ES6"` in your configuration to align with our usage of ES6 features and ensures that your build will succeed (for those requiring a backwards-compatible [UMD](https://github.com/umdjs/umd) version, a [local build](#building-locally) is advised). -> Then Defining the compiler option `"moduleResolution": "Node"` in **tsconfig.json** helps with import errors by ensuring that TypeScript uses the correct strategy for resolving imports based on the targeted Node.js version. +> Then defining the compiler option `"moduleResolution": "Node"` in **tsconfig.json** helps with import errors by ensuring that TypeScript uses the correct strategy for resolving imports based on the targeted Node.js version. > ```json > { > "compilerOptions": { @@ -105,7 +105,7 @@ To understand how to use the library through examples, we provide three illustra - [/examples/player.html](./examples/player.html) → Play a stream - [/examples/player-with-timed-metadata.html](./examples/player-with-timed-metadata.html) → Play a stream with timed metadata -1. In your project directory, if you have installed the [http-server package](#requirements), execute the following command from the Terminal prompt by navigating to: +1. In your project directory, if you have installed the [http-server service](#requirements), execute the following command from the Terminal prompt by navigating to: ```shell http-server . -p 8081