@ocavue/tsconfig 0.6.1 → 0.6.2
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/package.json +32 -29
- package/.github/FUNDING.yml +0 -1
- package/.github/actions/setup/action.yml +0 -24
- package/.github/workflows/release.yml +0 -32
- package/CHANGELOG.md +0 -139
package/package.json
CHANGED
|
@@ -1,30 +1,33 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
2
|
+
"name": "@ocavue/tsconfig",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.6.2",
|
|
5
|
+
"description": "A collection of reusable TypeScript configurations",
|
|
6
|
+
"author": "ocavue <ocavue@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"funding": "https://github.com/sponsors/ocavue",
|
|
9
|
+
"homepage": "https://github.com/ocavue/tsconfig#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/ocavue/tsconfig.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": "https://github.com/ocavue/tsconfig/issues",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"tsconfig",
|
|
17
|
+
"typescript",
|
|
18
|
+
"config"
|
|
19
|
+
],
|
|
20
|
+
"files": [
|
|
21
|
+
"./**/*.json"
|
|
22
|
+
],
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "bun build.ts"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/bun": "^1.3.2",
|
|
31
|
+
"prettier": "^3.6.2"
|
|
32
|
+
}
|
|
33
|
+
}
|
package/.github/FUNDING.yml
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
github: [ocavue]
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
name: Setup
|
|
2
|
-
description: Setup the environment
|
|
3
|
-
|
|
4
|
-
inputs:
|
|
5
|
-
node-version:
|
|
6
|
-
description: The version of node.js
|
|
7
|
-
required: false
|
|
8
|
-
default: '24'
|
|
9
|
-
|
|
10
|
-
runs:
|
|
11
|
-
using: composite
|
|
12
|
-
steps:
|
|
13
|
-
- uses: pnpm/action-setup@v4
|
|
14
|
-
|
|
15
|
-
- name: Setup node
|
|
16
|
-
uses: actions/setup-node@v6
|
|
17
|
-
with:
|
|
18
|
-
node-version: ${{ inputs.node-version }}
|
|
19
|
-
cache: pnpm
|
|
20
|
-
registry-url: 'https://registry.npmjs.org'
|
|
21
|
-
|
|
22
|
-
- name: Install
|
|
23
|
-
run: pnpm install
|
|
24
|
-
shell: bash
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- master
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
version:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
steps:
|
|
12
|
-
- uses: googleapis/release-please-action@v4
|
|
13
|
-
id: release-please
|
|
14
|
-
with:
|
|
15
|
-
release-type: node
|
|
16
|
-
outputs:
|
|
17
|
-
release_created: ${{ steps.release-please.outputs.release_created }}
|
|
18
|
-
|
|
19
|
-
publish:
|
|
20
|
-
runs-on: ubuntu-latest
|
|
21
|
-
permissions:
|
|
22
|
-
contents: write
|
|
23
|
-
id-token: write
|
|
24
|
-
needs: [version]
|
|
25
|
-
if: ${{ needs.version.outputs.release_created }}
|
|
26
|
-
steps:
|
|
27
|
-
- uses: actions/checkout@v5
|
|
28
|
-
|
|
29
|
-
- uses: ./.github/actions/setup
|
|
30
|
-
|
|
31
|
-
- name: Publish to NPM
|
|
32
|
-
run: pnpm publish
|
package/CHANGELOG.md
DELETED
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [0.6.1](https://github.com/ocavue/tsconfig/compare/v0.6.0...v0.6.1) (2025-11-20)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Bug Fixes
|
|
7
|
-
|
|
8
|
-
* enable `allowImportingTsExtensions` for bundlers ([#32](https://github.com/ocavue/tsconfig/issues/32)) ([69ea97b](https://github.com/ocavue/tsconfig/commit/69ea97be666ee3c257f98f24cd841353f7fe8eb8))
|
|
9
|
-
|
|
10
|
-
## [0.6.0](https://github.com/ocavue/tsconfig/compare/v0.5.0...v0.6.0) (2025-11-20)
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* enable `rewriteRelativeImportExtensions` ([#29](https://github.com/ocavue/tsconfig/issues/29)) ([23c95e1](https://github.com/ocavue/tsconfig/commit/23c95e1e8d4ac9c6000a49d9fb22a26264f6da77))
|
|
16
|
-
|
|
17
|
-
## [0.5.0](https://github.com/ocavue/tsconfig/compare/v0.4.0...v0.5.0) (2025-09-05)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
* enable source map ([#27](https://github.com/ocavue/tsconfig/issues/27)) ([e7e3a82](https://github.com/ocavue/tsconfig/commit/e7e3a82b3a36495c57a2886731417c75959b84d6))
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Bug Fixes
|
|
26
|
-
|
|
27
|
-
* fix release workflow ([#26](https://github.com/ocavue/tsconfig/issues/26)) ([42154f7](https://github.com/ocavue/tsconfig/commit/42154f7e3b0eee08eae38a2218a3defda8c11530))
|
|
28
|
-
|
|
29
|
-
## [0.4.0](https://github.com/ocavue/tsconfig/compare/v0.3.7...v0.4.0) (2025-08-19)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Features
|
|
33
|
-
|
|
34
|
-
* include json and exclude dist ([#23](https://github.com/ocavue/tsconfig/issues/23)) ([a0c8b0e](https://github.com/ocavue/tsconfig/commit/a0c8b0e37e8d5cdb2b24dc8e8e93204987d00c8b))
|
|
35
|
-
|
|
36
|
-
## [0.3.7](https://github.com/ocavue/tsconfig/compare/v0.3.6...v0.3.7) (2025-04-18)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* correct `outDir` for build-bundler.json ([#21](https://github.com/ocavue/tsconfig/issues/21)) ([efab1c3](https://github.com/ocavue/tsconfig/commit/efab1c3bbca4024e9997803efed6297bb19782b6))
|
|
42
|
-
|
|
43
|
-
## [0.3.6](https://github.com/ocavue/tsconfig/compare/v0.3.5...v0.3.6) (2025-04-17)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Bug Fixes
|
|
47
|
-
|
|
48
|
-
* add back `outDir` fields ([#19](https://github.com/ocavue/tsconfig/issues/19)) ([345c5e8](https://github.com/ocavue/tsconfig/commit/345c5e84b23152e11e4cfb71238f7df70a257216))
|
|
49
|
-
|
|
50
|
-
## [0.3.5](https://github.com/ocavue/tsconfig/compare/v0.3.4...v0.3.5) (2025-04-17)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Bug Fixes
|
|
54
|
-
|
|
55
|
-
* correct `include` field for tsc ([#17](https://github.com/ocavue/tsconfig/issues/17)) ([168a86f](https://github.com/ocavue/tsconfig/commit/168a86f495e0b26e79884c9e2ce40d1cc0f450fd))
|
|
56
|
-
|
|
57
|
-
## [0.3.4](https://github.com/ocavue/tsconfig/compare/v0.3.3...v0.3.4) (2025-04-17)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* inline extends ([#15](https://github.com/ocavue/tsconfig/issues/15)) ([158f94c](https://github.com/ocavue/tsconfig/commit/158f94c226e73e1263f22cf4d568e40b6e623757))
|
|
63
|
-
|
|
64
|
-
## [0.3.3](https://github.com/ocavue/tsconfig/compare/v0.3.2...v0.3.3) (2025-04-13)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Bug Fixes
|
|
68
|
-
|
|
69
|
-
* put `tsBuildInfoFile` under `dist/` ([#13](https://github.com/ocavue/tsconfig/issues/13)) ([8d1f1d4](https://github.com/ocavue/tsconfig/commit/8d1f1d410c804a66a3b31dce92dd12d17e8faa55))
|
|
70
|
-
|
|
71
|
-
## [0.3.2](https://github.com/ocavue/tsconfig/compare/v0.3.1...v0.3.2) (2025-04-11)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
### Bug Fixes
|
|
75
|
-
|
|
76
|
-
* trigger a release ([#11](https://github.com/ocavue/tsconfig/issues/11)) ([d908ad4](https://github.com/ocavue/tsconfig/commit/d908ad4f56b97b2a3ad3b8447153f2728bd94cac))
|
|
77
|
-
|
|
78
|
-
## [0.3.1](https://github.com/ocavue/tsconfig/compare/v0.3.0...v0.3.1) (2025-04-11)
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
* tweak `outDir` paths ([#9](https://github.com/ocavue/tsconfig/issues/9)) ([2613270](https://github.com/ocavue/tsconfig/commit/2613270b453f9e1775990b391ca8295587716d41))
|
|
84
|
-
|
|
85
|
-
## [0.3.0](https://github.com/ocavue/tsconfig/compare/v0.2.0...v0.3.0) (2025-04-11)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
### Features
|
|
89
|
-
|
|
90
|
-
* remove explicit `tsBuildInfoFile` ([#7](https://github.com/ocavue/tsconfig/issues/7)) ([8f87eb1](https://github.com/ocavue/tsconfig/commit/8f87eb194ebb354be8f07844575d43d23b3b1c86))
|
|
91
|
-
|
|
92
|
-
## [0.2.0](https://github.com/ocavue/tsconfig/compare/v0.1.3...v0.2.0) (2025-01-10)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
### Features
|
|
96
|
-
|
|
97
|
-
* remove `exports` in package.json for better editor support ([#5](https://github.com/ocavue/tsconfig/issues/5)) ([ff2a020](https://github.com/ocavue/tsconfig/commit/ff2a02032935b3ac5cd0f9be9658cfba050727e6))
|
|
98
|
-
|
|
99
|
-
## [0.1.3](https://github.com/ocavue/tsconfig/compare/v0.1.2...v0.1.3) (2024-12-28)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Bug Fixes
|
|
103
|
-
|
|
104
|
-
* set rootDir for build-tsc ([1f6a14c](https://github.com/ocavue/tsconfig/commit/1f6a14c4eb7f9f7c0e64dfec2c0cc88d76c86090))
|
|
105
|
-
|
|
106
|
-
## [0.1.2](https://github.com/ocavue/tsconfig/compare/v0.1.1...v0.1.2) (2024-12-28)
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
### Continuous Integration
|
|
110
|
-
|
|
111
|
-
* remove build step ([725d4f5](https://github.com/ocavue/tsconfig/commit/725d4f51346b40c6573f8e0de927eaf8d3a0ed91))
|
|
112
|
-
|
|
113
|
-
## [0.1.1](https://github.com/ocavue/tsconfig/compare/v0.1.0...v0.1.1) (2024-12-28)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
### Miscellaneous Chores
|
|
117
|
-
|
|
118
|
-
* trigger release ([842d880](https://github.com/ocavue/tsconfig/commit/842d8804e79161daf3360452cead8bfcbe5b81e9))
|
|
119
|
-
|
|
120
|
-
## 0.1.0 (2024-12-28)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
### Features
|
|
124
|
-
|
|
125
|
-
* add tsconfig files ([b133827](https://github.com/ocavue/tsconfig/commit/b133827c08a645b0b7663e1ce0b2460a6798b12d))
|
|
126
|
-
* enable composite ([bcd2ae4](https://github.com/ocavue/tsconfig/commit/bcd2ae46c81fd6a32c6d027b3f8092e1361be26c))
|
|
127
|
-
* refactor ([b8e7992](https://github.com/ocavue/tsconfig/commit/b8e79926cb144cfc1e136604e15dce6b8667d4e1))
|
|
128
|
-
* use different outDir paths ([f9b6d1e](https://github.com/ocavue/tsconfig/commit/f9b6d1e97f491bfceb7b52e6e3713f1cbeb5a9d3))
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
* fix exports in package.json ([8c1edb3](https://github.com/ocavue/tsconfig/commit/8c1edb3b9405c6e23c1af57695eb677f08fb1b81))
|
|
134
|
-
* set rootDir in tsc.json ([686e434](https://github.com/ocavue/tsconfig/commit/686e434dea0f6ee5a6e42855aa3d0a92cf3d24bc))
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
### Miscellaneous Chores
|
|
138
|
-
|
|
139
|
-
* trigger release ([2ff890b](https://github.com/ocavue/tsconfig/commit/2ff890bc7d3d070d9414895b2696a1647a302b00))
|