@ocavue/tsconfig 0.3.7 → 0.4.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.
@@ -5,7 +5,7 @@ inputs:
5
5
  node-version:
6
6
  description: The version of node.js
7
7
  required: false
8
- default: '20'
8
+ default: '24'
9
9
 
10
10
  runs:
11
11
  using: composite
@@ -18,6 +18,9 @@ jobs:
18
18
 
19
19
  publish:
20
20
  runs-on: ubuntu-latest
21
+ permissions:
22
+ contents: write
23
+ id-token: write
21
24
  needs: [version]
22
25
  if: ${{ needs.version.outputs.release_created }}
23
26
  steps:
@@ -27,5 +30,3 @@ jobs:
27
30
 
28
31
  - name: Publish to NPM
29
32
  run: pnpm publish
30
- env:
31
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.0](https://github.com/ocavue/tsconfig/compare/v0.3.7...v0.4.0) (2025-08-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * include json and exclude dist ([#23](https://github.com/ocavue/tsconfig/issues/23)) ([a0c8b0e](https://github.com/ocavue/tsconfig/commit/a0c8b0e37e8d5cdb2b24dc8e8e93204987d00c8b))
9
+
3
10
  ## [0.3.7](https://github.com/ocavue/tsconfig/compare/v0.3.6...v0.3.7) (2025-04-18)
4
11
 
5
12
 
package/dom/app.json CHANGED
@@ -54,5 +54,6 @@
54
54
  "outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_all/out"
55
55
  },
56
56
 
57
- "include": ["${configDir}/**/*"]
57
+ "include": ["${configDir}/**/*", "${configDir}/**/*.json"],
58
+ "exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
58
59
  }
@@ -54,5 +54,5 @@
54
54
  "outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_src/out"
55
55
  },
56
56
 
57
- "include": ["${configDir}/src/**/*"]
57
+ "include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
58
58
  }
@@ -59,5 +59,5 @@
59
59
  "tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_dom_node_src/tsconfig.tsbuildinfo"
60
60
  },
61
61
 
62
- "include": ["${configDir}/src/**/*"]
62
+ "include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
63
63
  }
package/dom/root.json CHANGED
@@ -54,5 +54,6 @@
54
54
  "outDir": "${configDir}/node_modules/.cache/tsconfig_dom_bundler_root/out"
55
55
  },
56
56
 
57
- "include": ["${configDir}/*"]
57
+ "include": ["${configDir}/*", "${configDir}/**/*.json"],
58
+ "exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
58
59
  }
package/es/app.json CHANGED
@@ -48,5 +48,6 @@
48
48
  "outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_all/out"
49
49
  },
50
50
 
51
- "include": ["${configDir}/**/*"]
51
+ "include": ["${configDir}/**/*", "${configDir}/**/*.json"],
52
+ "exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
52
53
  }
@@ -48,5 +48,5 @@
48
48
  "outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_src/out"
49
49
  },
50
50
 
51
- "include": ["${configDir}/src/**/*"]
51
+ "include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
52
52
  }
package/es/build-tsc.json CHANGED
@@ -53,5 +53,5 @@
53
53
  "tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig_es_node_src/tsconfig.tsbuildinfo"
54
54
  },
55
55
 
56
- "include": ["${configDir}/src/**/*"]
56
+ "include": ["${configDir}/src/**/*", "${configDir}/src/**/*.json"]
57
57
  }
package/es/root.json CHANGED
@@ -48,5 +48,6 @@
48
48
  "outDir": "${configDir}/node_modules/.cache/tsconfig_es_bundler_root/out"
49
49
  },
50
50
 
51
- "include": ["${configDir}/*"]
51
+ "include": ["${configDir}/*", "${configDir}/**/*.json"],
52
+ "exclude": ["${configDir}/**/node_modules", "${configDir}/**/dist"]
52
53
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ocavue/tsconfig",
3
3
  "type": "module",
4
- "version": "0.3.7",
4
+ "version": "0.4.0",
5
5
  "description": "A collection of reusable TypeScript configurations",
6
6
  "author": "ocavue <ocavue@gmail.com>",
7
7
  "license": "MIT",