@taiga-ui/tsconfig 0.14.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,31 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.16.0](https://github.com/taiga-family/linters/compare/@taiga-ui/tsconfig@0.15.0...@taiga-ui/tsconfig@0.16.0) (2024-02-19)
7
+
8
+ ### Features
9
+
10
+ - **tsconfig:** add `es2021.string` to `lib` (`replaceAll` support)
11
+ ([#321](https://github.com/taiga-family/linters/issues/321))
12
+ ([6608b3f](https://github.com/taiga-family/linters/commit/6608b3f6225ae6cffd32ff59bdc7557f65f34939))
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
19
+ # [0.15.0](https://github.com/taiga-family/linters/compare/@taiga-ui/tsconfig@0.14.0...@taiga-ui/tsconfig@0.15.0) (2024-02-13)
20
+
21
+ ### Features
22
+
23
+ - **tsconfig:** es2018.promise
24
+ ([a5bf33c](https://github.com/taiga-family/linters/commit/a5bf33ca5f4c5c069500db864bc47ac98bfc07a5))
25
+
26
+ # Change Log
27
+
28
+ All notable changes to this project will be documented in this file. See
29
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
30
+
6
31
  # [0.14.0](https://github.com/taiga-family/linters/compare/@taiga-ui/tsconfig@0.13.0...@taiga-ui/tsconfig@0.14.0) (2024-01-19)
7
32
 
8
33
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/tsconfig",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "description": "Taiga UI tsconfig",
5
5
  "keywords": [
6
6
  "taiga-ui",
package/tsconfig.json CHANGED
@@ -40,7 +40,15 @@
40
40
  "outDir": "./dist",
41
41
  "target": "ES2017",
42
42
  "module": "ES2020",
43
- "lib": ["es2017", "es2018.asynciterable", "es2019.object", "es2019.string", "dom"],
43
+ "lib": [
44
+ "es2017",
45
+ "es2018.asynciterable",
46
+ "es2018.promise",
47
+ "es2019.object",
48
+ "es2019.string",
49
+ "es2021.string",
50
+ "dom"
51
+ ],
44
52
  "typeRoots": ["node_modules/@types"],
45
53
  "types": ["node"],
46
54
  "skipLibCheck": true,