@visulima/tsconfig 1.0.9 → 1.0.10

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 +20 -0
  2. package/package.json +14 -5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## @visulima/tsconfig [1.0.10](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.0.9...@visulima/tsconfig@1.0.10) (2024-09-07)
2
+
3
+ ### Bug Fixes
4
+
5
+ * added types support for node10 ([604583f](https://github.com/visulima/visulima/commit/604583fa3c24b950fafad45d17e7a1333040fd76))
6
+
7
+ ### Styles
8
+
9
+ * cs fixes ([f5c4af7](https://github.com/visulima/visulima/commit/f5c4af7cfa9fc79b6d3fa60c1e48d88bffab5a08))
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * update dev dependencies ([0738f98](https://github.com/visulima/visulima/commit/0738f9810478bb215ce4b2571dc8874c4c503089))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@visulima/fs:** upgraded to 2.1.15
19
+ * **@visulima/path:** upgraded to 1.0.6
20
+
1
21
  ## @visulima/tsconfig [1.0.9](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.0.8...@visulima/tsconfig@1.0.9) (2024-08-30)
2
22
 
3
23
  ### Miscellaneous Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/tsconfig",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Find and/or parse the tsconfig.json file from a directory path.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -54,14 +54,21 @@
54
54
  "module": "dist/index.mjs",
55
55
  "browser": "./dist/index.mjs",
56
56
  "types": "dist/index.d.ts",
57
+ "typesVersions": {
58
+ "*": {
59
+ "*": [
60
+ "./dist/index.d.ts"
61
+ ]
62
+ }
63
+ },
57
64
  "files": [
58
65
  "dist",
59
66
  "README.md",
60
67
  "CHANGELOG.md"
61
68
  ],
62
69
  "dependencies": {
63
- "@visulima/fs": "2.1.14",
64
- "@visulima/path": "1.0.5",
70
+ "@visulima/fs": "2.1.15",
71
+ "@visulima/path": "1.0.6",
65
72
  "jsonc-parser": "^3.3.1",
66
73
  "resolve-pkg-maps": "^1.0.0"
67
74
  },
@@ -70,12 +77,13 @@
70
77
  "@anolilab/prettier-config": "^5.0.14",
71
78
  "@anolilab/semantic-release-pnpm": "1.1.3",
72
79
  "@anolilab/semantic-release-preset": "^9.0.0",
80
+ "@arethetypeswrong/cli": "^0.15.4",
73
81
  "@babel/core": "^7.25.2",
74
82
  "@rushstack/eslint-plugin-security": "^0.8.2",
75
83
  "@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
76
- "@total-typescript/ts-reset": "^0.6.0",
84
+ "@total-typescript/ts-reset": "^0.6.1",
77
85
  "@types/node": "18.18.14",
78
- "@visulima/packem": "^1.0.0-alpha.86",
86
+ "@visulima/packem": "^1.0.0-alpha.93",
79
87
  "@vitest/coverage-v8": "^2.0.5",
80
88
  "@vitest/ui": "^2.0.5",
81
89
  "conventional-changelog-conventionalcommits": "8.0.0",
@@ -124,6 +132,7 @@
124
132
  "build:prod": "cross-env NODE_ENV=production packem build",
125
133
  "clean": "rimraf node_modules dist .eslintcache",
126
134
  "dev": "pnpm run build --watch",
135
+ "lint:attw": "attw --pack",
127
136
  "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
128
137
  "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
129
138
  "lint:package-json": "publint --strict",