@w0s/tsconfig 3.0.0 → 3.2.0

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
@@ -1,7 +1,7 @@
1
1
  # tsconfig
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/%40w0s%2Ftsconfig.svg)](https://www.npmjs.com/package/@w0s/tsconfig)
4
- [![Workflow status](https://github.com/SaekiTominaga/w0s/actions/workflows/typescript.yml/badge.svg)](https://github.com/SaekiTominaga/w0s/actions/workflows/typescript.yml)
4
+ [![CI status](https://github.com/SaekiTominaga/w0s/actions/workflows/ci.yml/badge.svg)](https://github.com/SaekiTominaga/w0s/actions/workflows/ci.yml)
5
5
 
6
6
  [TSConfig](https://www.typescriptlang.org/tsconfig) file used on my personal website ([`w0s.jp`](https://github.com/SaekiTominaga/w0s.jp)).
7
7
 
@@ -22,6 +22,7 @@
22
22
  "verbatimModuleSyntax": true,
23
23
 
24
24
  /* Language and Environment */
25
+ "moduleDetection": "force",
25
26
  "target": "es2025",
26
27
 
27
28
  /* Projects */
package/package.json CHANGED
@@ -1,36 +1,36 @@
1
1
  {
2
2
  "name": "@w0s/tsconfig",
3
- "version": "3.0.0",
3
+ "version": "3.2.0",
4
4
  "description": "TSConfig file used on `w0s.jp`",
5
5
  "keywords": [
6
6
  "tsconfig"
7
7
  ],
8
+ "license": "MIT",
9
+ "author": "Saeki Tominaga",
8
10
  "repository": {
9
11
  "type": "git",
10
12
  "url": "git+https://github.com/SaekiTominaga/config.git"
11
13
  },
12
- "license": "MIT",
13
- "author": "Saeki Tominaga",
14
+ "files": [
15
+ "configs"
16
+ ],
14
17
  "type": "module",
15
18
  "exports": {
16
- ".": "./tsconfig.json",
17
- "./*": "./tsconfig-*.json"
19
+ ".": "./configs/base.json",
20
+ "./bundler": "./configs/bundler.json",
21
+ "./node": "./configs/node.json"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
18
25
  },
19
- "files": [
20
- "tsconfig.json",
21
- "tsconfig-*.json"
22
- ],
23
26
  "scripts": {
24
27
  "test": "tsc -p __tests__/tsconfig-valid.json",
25
28
  "test:invalid": "tsc -p __tests__/tsconfig-invalid.json"
26
29
  },
27
30
  "devDependencies": {
28
- "typescript": "^6.0.2"
31
+ "typescript": "7.0.2"
29
32
  },
30
33
  "peerDependencies": {
31
- "typescript": "^6.0.0"
32
- },
33
- "publishConfig": {
34
- "access": "public"
34
+ "typescript": "^6.0.0 || ^7.0.0"
35
35
  }
36
36
  }
File without changes
File without changes