@visulima/tsconfig 3.0.0-alpha.13 → 3.0.0-alpha.14

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 +12 -0
  2. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @visulima/tsconfig [3.0.0-alpha.14](https://github.com/visulima/visulima/compare/@visulima/tsconfig@3.0.0-alpha.13...@visulima/tsconfig@3.0.0-alpha.14) (2026-05-06)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * **tsconfig:** apply prettier and eslint quote-style auto-fix ([e184ae4](https://github.com/visulima/visulima/commit/e184ae4c162360c743428361d9be977bad555854))
6
+ * **tsconfig:** housekeeping cleanup ([081acf1](https://github.com/visulima/visulima/commit/081acf12b3853d85b233412493b48061d4f0dbf3))
7
+
8
+
9
+ ### Dependencies
10
+
11
+ * **@visulima/fs:** upgraded to 5.0.0-alpha.14
12
+
1
13
  ## @visulima/tsconfig [3.0.0-alpha.13](https://github.com/visulima/visulima/compare/@visulima/tsconfig@3.0.0-alpha.12...@visulima/tsconfig@3.0.0-alpha.13) (2026-05-04)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/tsconfig",
3
- "version": "3.0.0-alpha.13",
3
+ "version": "3.0.0-alpha.14",
4
4
  "description": "Find and/or parse the tsconfig.json file from a directory path.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -15,6 +15,11 @@
15
15
  "bugs": {
16
16
  "url": "https://github.com/visulima/visulima/issues"
17
17
  },
18
+ "license": "MIT",
19
+ "author": {
20
+ "name": "Daniel Bannert",
21
+ "email": "d.bannert@anolilab.de"
22
+ },
18
23
  "repository": {
19
24
  "type": "git",
20
25
  "url": "git+https://github.com/visulima/visulima.git",
@@ -30,13 +35,13 @@
30
35
  "url": "https://anolilab.com/support"
31
36
  }
32
37
  ],
33
- "license": "MIT",
34
- "author": {
35
- "name": "Daniel Bannert",
36
- "email": "d.bannert@anolilab.de"
37
- },
38
- "sideEffects": false,
38
+ "files": [
39
+ "dist",
40
+ "README.md",
41
+ "CHANGELOG.md"
42
+ ],
39
43
  "type": "module",
44
+ "sideEffects": false,
40
45
  "exports": {
41
46
  ".": {
42
47
  "types": "./dist/index.d.ts",
@@ -44,22 +49,17 @@
44
49
  },
45
50
  "./package.json": "./package.json"
46
51
  },
47
- "files": [
48
- "dist",
49
- "README.md",
50
- "CHANGELOG.md"
51
- ],
52
+ "publishConfig": {
53
+ "access": "public",
54
+ "provenance": true
55
+ },
52
56
  "dependencies": {
53
- "@visulima/fs": "5.0.0-alpha.13",
57
+ "@visulima/fs": "5.0.0-alpha.14",
54
58
  "@visulima/path": "3.0.0-alpha.10",
55
59
  "jsonc-parser": "^3.3.1",
56
60
  "resolve-pkg-maps": "^1.0.0"
57
61
  },
58
62
  "engines": {
59
63
  "node": "^22.14.0 || >=24.10.0"
60
- },
61
- "publishConfig": {
62
- "access": "public",
63
- "provenance": true
64
64
  }
65
65
  }