@kcconfigs/tsconfig 0.1.0 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.1](https://github.com/kc-workspace/kcws/compare/@kcconfigs/tsconfig+v0.1.0...@kcconfigs/tsconfig+v0.1.1) (2026-03-18)
4
+
5
+
6
+ ### Features
7
+
8
+ * **kcconfigs/tsconfig:** add @types/node as default types ([d3a748d](https://github.com/kc-workspace/kcws/commit/d3a748d3deb77fdd8d721b9447738bb8c2dfee54))
9
+ * **kcconfigs/tsconfig:** add noDefaultTypes feature to disable default type from presets ([070d13b](https://github.com/kc-workspace/kcws/commit/070d13b96fbcc24f0fffd607b4337210e4e15c8a))
10
+
11
+
12
+ ### Performance Improvements
13
+
14
+ * **deps:** bump tsdown from 0.18.4 to 0.20.1 ([#70](https://github.com/kc-workspace/kcws/issues/70)) ([24a3e06](https://github.com/kc-workspace/kcws/commit/24a3e0689e5b512d7a80fb6719387ab777662bb7))
15
+ * **deps:** update biome schema version from 2.3.10 to 2.4.6 across all packages ([909ff7e](https://github.com/kc-workspace/kcws/commit/909ff7ede64869a571dac9969169067e8d4b7fbc))
16
+
17
+
18
+ ### Dependencies
19
+
20
+ * The following workspace dependencies were updated
21
+ * devDependencies
22
+ * @kcconfigs/biome bumped to 0.2.2
23
+
3
24
  ## [0.1.0](https://github.com/kc-workspace/kcws/compare/@kcconfigs/tsconfig+v0.1.0-beta.2...@kcconfigs/tsconfig+v0.1.0) (2026-01-13)
4
25
 
5
26
 
package/README.md CHANGED
@@ -14,6 +14,7 @@ Provides multiple tsconfig.json templates for different project types and use ca
14
14
  - [Compiler Options](#compiler-options)
15
15
  - [Example](#example)
16
16
  - [TSDown](#tsdown)
17
+ - [Investigate](#investigate)
17
18
  - [References](#references)
18
19
 
19
20
  ## Prerequisites
@@ -79,6 +80,7 @@ Example use presets
79
80
  | `@kcconfigs/tsconfig/features/declarationOnly` | Only emit declaration files |
80
81
  | `@kcconfigs/tsconfig/features/diagnostics` | Add diagnostics output for debugging |
81
82
  | `@kcconfigs/tsconfig/features/nodeRuntime` | Set typescript to support directly run from Node.js |
83
+ | `@kcconfigs/tsconfig/features/noDefaultTypes` | Disable small set of default types |
82
84
  | `@kcconfigs/tsconfig/features/noIncremental` | Disable incremental from base config |
83
85
  | `@kcconfigs/tsconfig/features/noSourcemap` | Disable source map and declaration maps output |
84
86
  | `@kcconfigs/tsconfig/features/noStrict` | Disable strict mode when type checks |
@@ -140,6 +142,11 @@ Below are the example configuration per tools or frameworks.
140
142
 
141
143
  <!-- TODO: Add more -->
142
144
 
145
+ ## Investigate
146
+
147
+ You can use `tsc --showConfig` command to show the full config
148
+ after resolved **extends** path.
149
+
143
150
  ## References
144
151
 
145
152
  - [TypeScript Configuration][tsconfig]
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@kcconfigs/tsconfig",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Shared tsconfig.json",
5
+ "dependencies": {
6
+ "@types/node": "^24.0.0"
7
+ },
5
8
  "devDependencies": {
6
- "@biomejs/biome": "2.3.10",
7
- "@kcconfigs/biome": "0.2.1"
9
+ "@biomejs/biome": "2.4.6",
10
+ "@kcconfigs/biome": "0.2.2"
8
11
  },
9
12
  "peerDependencies": {
10
13
  "typescript": "^5.5.0"
@@ -0,0 +1,10 @@
1
+ {
2
+ "$schema": "https://www.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ // Modules - https://www.typescriptlang.org/tsconfig/#Modules_6244
5
+ "typeRoots": [
6
+ "${configDir}/node_modules/@types",
7
+ "${configDir}/node_modules/@kctypes"
8
+ ]
9
+ }
10
+ }
@@ -3,6 +3,8 @@
3
3
  "compilerOptions": {
4
4
  // Modules - https://www.typescriptlang.org/tsconfig/#Modules_6244
5
5
  "typeRoots": [
6
+ "../../node_modules/@types",
7
+ "../../node_modules/@kctypes",
6
8
  "${configDir}/node_modules/@types",
7
9
  "${configDir}/node_modules/@kctypes"
8
10
  ]