@w5s/tsconfig 3.0.1 → 3.1.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/package.json +22 -3
  2. package/tsconfig.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/tsconfig",
3
- "version": "3.0.1",
3
+ "version": "3.1.1",
4
4
  "description": "Typescript compiler configuration presets",
5
5
  "keywords": [
6
6
  "typescript",
@@ -27,7 +27,25 @@
27
27
  "!*.d.ts.map"
28
28
  ],
29
29
  "scripts": {
30
- "postpack": "npx clean-package restore"
30
+ "build": "npx run-p \"build:*\"",
31
+ "build:empty": ":",
32
+ "clean": "npx run-p \"clean:*\"",
33
+ "clean:empty": ":",
34
+ "docs": "node ../../markdown.mjs",
35
+ "format": "npx run-p \"format:*\"",
36
+ "format:src": "eslint . --fix",
37
+ "lint": "npx run-p \"lint:*\"",
38
+ "lint:src": "eslint .",
39
+ "postpack": "npx clean-package restore",
40
+ "prepack": "npx clean-package",
41
+ "prepare": "npx run-p \"prepare:*\"",
42
+ "prepare:empty": ":",
43
+ "spellcheck": "cspell --no-progress '**'",
44
+ "test": "npx run-p \"test:*\"",
45
+ "test:script": "tsc -p _tests/tsconfig.json --noEmit --skipLibCheck"
46
+ },
47
+ "devDependencies": {
48
+ "typescript": "5.9.3"
31
49
  },
32
50
  "peerDependencies": {
33
51
  "typescript": ">=5.x"
@@ -37,6 +55,7 @@
37
55
  "optional": true
38
56
  }
39
57
  },
58
+ "clean-package": "../../clean-package.config.mjs",
40
59
  "engines": {
41
60
  "node": ">=20.0.0"
42
61
  },
@@ -44,5 +63,5 @@
44
63
  "access": "public"
45
64
  },
46
65
  "sideEffect": false,
47
- "gitHead": "8338e5dded9a0bbed4fb84c69ee86d5eff743a12"
66
+ "gitHead": "550810ad9a8d35378bb00361cd0080bd67058fc5"
48
67
  }
package/tsconfig.json CHANGED
@@ -31,7 +31,7 @@
31
31
  // "noUnusedLocals": true, => Prefer ESLint validation
32
32
  // "noUnusedParameters": true, => Prefer ESLint validation
33
33
  "pretty": true,
34
- "resolveJsonModule": false,
34
+ "resolveJsonModule": true,
35
35
  "skipLibCheck": true,
36
36
  "sourceMap": true,
37
37
  "strict": true,