@visulima/tsconfig 3.0.0-alpha.25 → 3.0.0-alpha.27

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +19 -21
package/CHANGELOG.md CHANGED
@@ -1,3 +1,35 @@
1
+ ## @visulima/tsconfig [3.0.0-alpha.27](https://github.com/visulima/visulima/compare/@visulima/tsconfig@3.0.0-alpha.26...@visulima/tsconfig@3.0.0-alpha.27) (2026-05-27)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **storage-client:** percent-encode user fields in defaultFingerprint ([7c78a0f](https://github.com/visulima/visulima/commit/7c78a0f9512e2a673b941d80839e9f1e86b7b5d0))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * sorted package.json ([b47c545](https://github.com/visulima/visulima/commit/b47c545591600fdab17d5cd3a3fbc68b61e199da))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.28
15
+ * **@visulima/path:** upgraded to 3.0.0-alpha.11
16
+
17
+ ## @visulima/tsconfig [3.0.0-alpha.26](https://github.com/visulima/visulima/compare/@visulima/tsconfig@3.0.0-alpha.25...@visulima/tsconfig@3.0.0-alpha.26) (2026-05-26)
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * **ci-stability:** green CI across vis, native, lint, tests, attw ([#651](https://github.com/visulima/visulima/issues/651)) ([d4eb684](https://github.com/visulima/visulima/commit/d4eb684b5f75c818c9251048c605a0ed54a268e3))
22
+ * **repo:** sort package.json keys across all packages ([e1fd9ab](https://github.com/visulima/visulima/commit/e1fd9ab467ef96a98c777da1572ff6a50fcf7e71))
23
+
24
+ ### Tests
25
+
26
+ * **repo:** add dist runtime + types integration tests ([32ee300](https://github.com/visulima/visulima/commit/32ee300b7184117a0ddf9f9d390f75f8932d5ed9))
27
+
28
+
29
+ ### Dependencies
30
+
31
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.26
32
+
1
33
  ## @visulima/tsconfig [3.0.0-alpha.25](https://github.com/visulima/visulima/compare/@visulima/tsconfig@3.0.0-alpha.24...@visulima/tsconfig@3.0.0-alpha.25) (2026-05-20)
2
34
 
3
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/tsconfig",
3
- "version": "3.0.0-alpha.25",
3
+ "version": "3.0.0-alpha.27",
4
4
  "description": "Find and/or parse the tsconfig.json file from a directory path.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -12,14 +12,7 @@
12
12
  "visulima"
13
13
  ],
14
14
  "homepage": "https://visulima.com/packages/tsconfig",
15
- "bugs": {
16
- "url": "https://github.com/visulima/visulima/issues"
17
- },
18
- "license": "MIT",
19
- "author": {
20
- "name": "Daniel Bannert",
21
- "email": "d.bannert@anolilab.de"
22
- },
15
+ "bugs": "https://github.com/visulima/visulima/issues",
23
16
  "repository": {
24
17
  "type": "git",
25
18
  "url": "git+https://github.com/visulima/visulima.git",
@@ -35,13 +28,13 @@
35
28
  "url": "https://anolilab.com/support"
36
29
  }
37
30
  ],
38
- "files": [
39
- "dist",
40
- "README.md",
41
- "CHANGELOG.md"
42
- ],
43
- "type": "module",
31
+ "license": "MIT",
32
+ "author": {
33
+ "name": "Daniel Bannert",
34
+ "email": "d.bannert@anolilab.de"
35
+ },
44
36
  "sideEffects": false,
37
+ "type": "module",
45
38
  "exports": {
46
39
  ".": {
47
40
  "types": "./dist/index.d.ts",
@@ -49,17 +42,22 @@
49
42
  },
50
43
  "./package.json": "./package.json"
51
44
  },
52
- "publishConfig": {
53
- "access": "public",
54
- "provenance": true
55
- },
45
+ "files": [
46
+ "dist",
47
+ "README.md",
48
+ "CHANGELOG.md"
49
+ ],
56
50
  "dependencies": {
57
- "@visulima/fs": "5.0.0-alpha.25",
58
- "@visulima/path": "3.0.0-alpha.10",
51
+ "@visulima/fs": "5.0.0-alpha.28",
52
+ "@visulima/path": "3.0.0-alpha.11",
59
53
  "jsonc-parser": "^3.3.1",
60
54
  "resolve-pkg-maps": "^1.0.0"
61
55
  },
62
56
  "engines": {
63
57
  "node": "^22.14.0 || >=24.10.0"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public",
61
+ "provenance": true
64
62
  }
65
63
  }