We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6225177 commit 726e006Copy full SHA for 726e006
README.md
@@ -12,6 +12,11 @@ Install the package:
12
npm install angular-ecmascript-intl --save
13
```
14
15
+This package requires TypeScript with a lib setting of ES2021 or later.
16
+Older lib targets (e.g., ES2020 or below) are not supported and may cause
17
+type errors or missing type definitions. Make sure your `tsconfig.json` includes
18
+`"lib": ["ES2021"]` (or a newer standard such as ES2022) to ensure full compatibility.
19
+
20
Import the pipes individually as per usage, or import the `IntlModule` to import all pipes at once.
21
22
By default, all pipes will use the browser default locale.
0 commit comments