@w0s/tsconfig 1.4.1 → 1.5.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.
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://badge.fury.io/js/%40w0s%2Ftsconfig.svg)](https://www.npmjs.com/package/@w0s/tsconfig)
4
4
  [![test status](https://github.com/SaekiTominaga/w0s/actions/workflows/typescript-test.yml/badge.svg)](https://github.com/SaekiTominaga/w0s/actions/workflows/typescript-test.yml)
5
5
 
6
- [TSConfig](https://www.typescriptlang.org/tsconfig) file used on [w0s.jp](https://w0s.jp/)
6
+ [TSConfig](https://www.typescriptlang.org/tsconfig) file used on my personal website ([w0s.jp](https://github.com/SaekiTominaga/w0s.jp)).
7
7
 
8
8
  ## Usage
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w0s/tsconfig",
3
- "version": "1.4.1",
3
+ "version": "1.5.1",
4
4
  "description": "TSConfig file used on w0s.jp",
5
5
  "keywords": [
6
6
  "tsconfig"
@@ -19,7 +19,10 @@
19
19
  "test-invalid": "tsc --project __tests__/tsconfig-invalid.json"
20
20
  },
21
21
  "devDependencies": {
22
- "typescript": "^5.3.3"
22
+ "typescript": "^5.5.2"
23
+ },
24
+ "peerDependencies": {
25
+ "typescript": "^4.4.0 || ^5.0.0"
23
26
  },
24
27
  "publishConfig": {
25
28
  "access": "public"
package/tsconfig.json CHANGED
@@ -30,6 +30,9 @@
30
30
  "target": "ES2022",
31
31
 
32
32
  /* Projects */
33
- "incremental": true
33
+ "incremental": true,
34
+
35
+ /* Completeness */
36
+ "skipLibCheck": true
34
37
  }
35
38
  }