@visulima/tsconfig 3.0.0 → 3.0.2

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 +14 -0
  2. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## @visulima/tsconfig [3.0.2](https://github.com/visulima/visulima/compare/%40visulima%2Ftsconfig%403.0.1...%40visulima%2Ftsconfig%403.0.2) (2026-07-15)
2
+
3
+
4
+ ### Dependencies
5
+
6
+ * **@visulima/fs:** upgraded to 5.0.2
7
+
8
+ ## @visulima/tsconfig [3.0.1](https://github.com/visulima/visulima/compare/%40visulima%2Ftsconfig%403.0.0...%40visulima%2Ftsconfig%403.0.1) (2026-07-15)
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * **@visulima/fs:** upgraded to 5.0.1
14
+
1
15
  ## @visulima/tsconfig [3.0.0](https://github.com/visulima/visulima/compare/@visulima/tsconfig@2.1.3...@visulima/tsconfig@3.0.0) (2026-07-03)
2
16
 
3
17
  ### ⚠ BREAKING CHANGES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/tsconfig",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Find and/or parse the tsconfig.json file from a directory path.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -13,6 +13,11 @@
13
13
  ],
14
14
  "homepage": "https://visulima.com/packages/tsconfig",
15
15
  "bugs": "https://github.com/visulima/visulima/issues",
16
+ "license": "MIT",
17
+ "author": {
18
+ "name": "Daniel Bannert",
19
+ "email": "d.bannert@anolilab.de"
20
+ },
16
21
  "repository": {
17
22
  "type": "git",
18
23
  "url": "git+https://github.com/visulima/visulima.git",
@@ -28,13 +33,13 @@
28
33
  "url": "https://anolilab.com/support"
29
34
  }
30
35
  ],
31
- "license": "MIT",
32
- "author": {
33
- "name": "Daniel Bannert",
34
- "email": "d.bannert@anolilab.de"
35
- },
36
- "sideEffects": false,
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "CHANGELOG.md"
40
+ ],
37
41
  "type": "module",
42
+ "sideEffects": false,
38
43
  "exports": {
39
44
  ".": {
40
45
  "types": "./dist/index.d.ts",
@@ -42,22 +47,17 @@
42
47
  },
43
48
  "./package.json": "./package.json"
44
49
  },
45
- "files": [
46
- "dist",
47
- "README.md",
48
- "CHANGELOG.md"
49
- ],
50
+ "publishConfig": {
51
+ "access": "public",
52
+ "provenance": true
53
+ },
50
54
  "dependencies": {
51
- "@visulima/fs": "5.0.0",
55
+ "@visulima/fs": "5.0.2",
52
56
  "@visulima/path": "3.0.0",
53
57
  "jsonc-parser": "^3.3.1",
54
58
  "resolve-pkg-maps": "^1.0.0"
55
59
  },
56
60
  "engines": {
57
61
  "node": "^22.14.0 || >=24.10.0"
58
- },
59
- "publishConfig": {
60
- "access": "public",
61
- "provenance": true
62
62
  }
63
63
  }