@ocavue/tsconfig 0.2.0 → 0.3.3

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,14 +5,12 @@ inputs:
5
5
  node-version:
6
6
  description: The version of node.js
7
7
  required: false
8
- default: '18'
8
+ default: '20'
9
9
 
10
10
  runs:
11
11
  using: composite
12
12
  steps:
13
- - name: Install pnpm
14
- run: corepack enable
15
- shell: bash
13
+ - uses: pnpm/action-setup@v4
16
14
 
17
15
  - name: Setup node
18
16
  uses: actions/setup-node@v4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.3](https://github.com/ocavue/tsconfig/compare/v0.3.2...v0.3.3) (2025-04-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * put `tsBuildInfoFile` under `dist/` ([#13](https://github.com/ocavue/tsconfig/issues/13)) ([8d1f1d4](https://github.com/ocavue/tsconfig/commit/8d1f1d410c804a66a3b31dce92dd12d17e8faa55))
9
+
10
+ ## [0.3.2](https://github.com/ocavue/tsconfig/compare/v0.3.1...v0.3.2) (2025-04-11)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * trigger a release ([#11](https://github.com/ocavue/tsconfig/issues/11)) ([d908ad4](https://github.com/ocavue/tsconfig/commit/d908ad4f56b97b2a3ad3b8447153f2728bd94cac))
16
+
17
+ ## [0.3.1](https://github.com/ocavue/tsconfig/compare/v0.3.0...v0.3.1) (2025-04-11)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * tweak `outDir` paths ([#9](https://github.com/ocavue/tsconfig/issues/9)) ([2613270](https://github.com/ocavue/tsconfig/commit/2613270b453f9e1775990b391ca8295587716d41))
23
+
24
+ ## [0.3.0](https://github.com/ocavue/tsconfig/compare/v0.2.0...v0.3.0) (2025-04-11)
25
+
26
+
27
+ ### Features
28
+
29
+ * remove explicit `tsBuildInfoFile` ([#7](https://github.com/ocavue/tsconfig/issues/7)) ([8f87eb1](https://github.com/ocavue/tsconfig/commit/8f87eb194ebb354be8f07844575d43d23b3b1c86))
30
+
3
31
  ## [0.2.0](https://github.com/ocavue/tsconfig/compare/v0.1.3...v0.2.0) (2025-01-10)
4
32
 
5
33
 
package/es/app.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/app",
5
- "tsBuildInfoFile": "${configDir}/node_modules/.cache/ocavue-tsconfig/app/tsconfig.tsbuildinfo"
4
+ "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/app/out"
6
5
  },
7
6
  "extends": [
8
7
  "../shared/base.json",
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/build-bundler",
5
- "tsBuildInfoFile": "${configDir}/node_modules/.cache/ocavue-tsconfig/build-bundler/tsconfig.tsbuildinfo"
4
+ "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/build-bundler/out"
6
5
  },
7
6
  "extends": [
8
7
  "../shared/base.json",
package/es/build-tsc.json CHANGED
@@ -2,7 +2,8 @@
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
4
  "outDir": "${configDir}/dist",
5
- "tsBuildInfoFile": "${configDir}/dist/tsconfig.tsbuildinfo"
5
+ // By default, ._* paths are ignored by npm publish.
6
+ "tsBuildInfoFile": "${configDir}/dist/._cache/tsconfig/tsconfig.tsbuildinfo"
6
7
  },
7
8
  "extends": [
8
9
  "../shared/base.json",
package/es/root.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/root",
5
- "tsBuildInfoFile": "${configDir}/node_modules/.cache/ocavue-tsconfig/root/tsconfig.tsbuildinfo"
4
+ "outDir": "${configDir}/node_modules/.cache/ocavue-tsconfig/root/out"
6
5
  },
7
6
  "extends": [
8
7
  "../shared/base.json",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ocavue/tsconfig",
3
3
  "type": "module",
4
- "version": "0.2.0",
4
+ "version": "0.3.3",
5
5
  "description": "A collection of reusable TypeScript configurations",
6
6
  "author": "ocavue <ocavue@gmail.com>",
7
7
  "license": "MIT",