@jmlweb/tsconfig-node 1.0.0 → 1.0.1

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 +9 -0
  2. package/package.json +7 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @jmlweb/tsconfig-node
2
+
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2208f74: Standardize repository field format to object format across all packages and configure syncpack to preserve it.
8
+ - Updated dependencies [2208f74]
9
+ - @jmlweb/tsconfig-base@1.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlweb/tsconfig-node",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TypeScript configuration for Node.js and CLI projects. Extends @jmlweb/tsconfig-base with Node.js-specific settings excluding DOM types.",
5
5
  "main": "tsconfig.json",
6
6
  "exports": {
@@ -12,10 +12,10 @@
12
12
  "CHANGELOG.md"
13
13
  ],
14
14
  "keywords": [
15
+ "cli",
15
16
  "config",
16
17
  "node",
17
18
  "nodejs",
18
- "cli",
19
19
  "strict",
20
20
  "tsconfig",
21
21
  "type-checking",
@@ -23,7 +23,10 @@
23
23
  ],
24
24
  "author": "jmlweb",
25
25
  "license": "MIT",
26
- "repository": "jmlweb/tooling.git",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/jmlweb/tooling.git"
29
+ },
27
30
  "bugs": "https://github.com/jmlweb/tooling/issues",
28
31
  "homepage": "https://github.com/jmlweb/tooling/tree/main/packages/tsconfig-node#readme",
29
32
  "engines": {
@@ -33,7 +36,7 @@
33
36
  "access": "public"
34
37
  },
35
38
  "peerDependencies": {
36
- "@jmlweb/tsconfig-base": "^1.0.0",
39
+ "@jmlweb/tsconfig-base": "^1.0.1",
37
40
  "typescript": ">=5.0.0"
38
41
  },
39
42
  "scripts": {}