@visulima/tsconfig 1.1.10 → 1.1.12
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 +27 -0
- package/README.md +11 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## @visulima/tsconfig [1.1.12](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.11...@visulima/tsconfig@1.1.12) (2025-01-25)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous Chores
|
|
8
|
+
|
|
9
|
+
* fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* **@visulima/fs:** upgraded to 3.0.1
|
|
15
|
+
* **@visulima/path:** upgraded to 1.3.4
|
|
16
|
+
|
|
17
|
+
## @visulima/tsconfig [1.1.11](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.10...@visulima/tsconfig@1.1.11) (2025-01-25)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Dependencies
|
|
25
|
+
|
|
26
|
+
* **@visulima/fs:** upgraded to 3.0.0
|
|
27
|
+
|
|
1
28
|
## @visulima/tsconfig [1.1.10](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.9...@visulima/tsconfig@1.1.10) (2025-01-22)
|
|
2
29
|
|
|
3
30
|
### Styles
|
package/README.md
CHANGED
|
@@ -191,7 +191,7 @@ Instructs the TypeScript compiler how to watch files.
|
|
|
191
191
|
function findTsConfig(cwd?, options?): Promise<TsConfigResult>
|
|
192
192
|
```
|
|
193
193
|
|
|
194
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:30](https://github.com/visulima/visulima/blob/
|
|
194
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:30](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/find-tsconfig.ts#L30)
|
|
195
195
|
|
|
196
196
|
An asynchronous function that retrieves the TSConfig by searching for the "tsconfig.json" first,
|
|
197
197
|
second attempt is to look for the "jsconfig.json" file from a given current working directory.
|
|
@@ -228,7 +228,7 @@ An `Error` when the "tsconfig.json" file is not found.
|
|
|
228
228
|
function findTsConfigSync(cwd?, options?): TsConfigResult
|
|
229
229
|
```
|
|
230
230
|
|
|
231
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visulima/visulima/blob/
|
|
231
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/find-tsconfig.ts#L69)
|
|
232
232
|
|
|
233
233
|
#### Parameters
|
|
234
234
|
|
|
@@ -252,7 +252,7 @@ Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visul
|
|
|
252
252
|
function readTsConfig(tsconfigPath, options?): object
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:460](https://github.com/visulima/visulima/blob/
|
|
255
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:460](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/read-tsconfig.ts#L460)
|
|
256
256
|
|
|
257
257
|
#### Parameters
|
|
258
258
|
|
|
@@ -344,7 +344,7 @@ Instructs the TypeScript compiler how to watch files.
|
|
|
344
344
|
function writeTsConfig(tsConfig, options): Promise<void>
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
-
Defined in: [packages/tsconfig/src/write-tsconfig.ts:17](https://github.com/visulima/visulima/blob/
|
|
347
|
+
Defined in: [packages/tsconfig/src/write-tsconfig.ts:17](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/write-tsconfig.ts#L17)
|
|
348
348
|
|
|
349
349
|
An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.
|
|
350
350
|
|
|
@@ -378,7 +378,7 @@ The return type of function is `Promise<void>`.
|
|
|
378
378
|
function writeTsConfigSync(tsConfig, options): void
|
|
379
379
|
```
|
|
380
380
|
|
|
381
|
-
Defined in: [packages/tsconfig/src/write-tsconfig.ts:35](https://github.com/visulima/visulima/blob/
|
|
381
|
+
Defined in: [packages/tsconfig/src/write-tsconfig.ts:35](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/write-tsconfig.ts#L35)
|
|
382
382
|
|
|
383
383
|
A function that writes the provided TypeScript configuration object to a tsconfig.json file.
|
|
384
384
|
|
|
@@ -412,7 +412,7 @@ The return type of function is `Promise<void>`.
|
|
|
412
412
|
const implicitBaseUrlSymbol: typeof implicitBaseUrlSymbol;
|
|
413
413
|
```
|
|
414
414
|
|
|
415
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visulima/visulima/blob/
|
|
415
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/read-tsconfig.ts#L457)
|
|
416
416
|
|
|
417
417
|
***
|
|
418
418
|
|
|
@@ -422,7 +422,7 @@ Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visu
|
|
|
422
422
|
type FindTsConfigOptions = ReadTsConfigOptions & object;
|
|
423
423
|
```
|
|
424
424
|
|
|
425
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:10](https://github.com/visulima/visulima/blob/
|
|
425
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:10](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/find-tsconfig.ts#L10)
|
|
426
426
|
|
|
427
427
|
#### Type declaration
|
|
428
428
|
|
|
@@ -448,7 +448,7 @@ optional configFileName: string;
|
|
|
448
448
|
type ReadTsConfigOptions = object;
|
|
449
449
|
```
|
|
450
450
|
|
|
451
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:444](https://github.com/visulima/visulima/blob/
|
|
451
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:444](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/read-tsconfig.ts#L444)
|
|
452
452
|
|
|
453
453
|
#### Type declaration
|
|
454
454
|
|
|
@@ -476,7 +476,7 @@ undefined
|
|
|
476
476
|
type TsConfigJsonResolved = Except<TsConfigJson, "extends">;
|
|
477
477
|
```
|
|
478
478
|
|
|
479
|
-
Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visulima/blob/
|
|
479
|
+
Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/types.ts#L3)
|
|
480
480
|
|
|
481
481
|
***
|
|
482
482
|
|
|
@@ -486,7 +486,7 @@ Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visul
|
|
|
486
486
|
type TsConfigResult = object;
|
|
487
487
|
```
|
|
488
488
|
|
|
489
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:15](https://github.com/visulima/visulima/blob/
|
|
489
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:15](https://github.com/visulima/visulima/blob/4ae292984681c71a770e4d4560432f7b7c5a141a/packages/tsconfig/src/find-tsconfig.ts#L15)
|
|
490
490
|
|
|
491
491
|
#### Type declaration
|
|
492
492
|
|
|
@@ -547,7 +547,7 @@ If you would like to help take a look at the [list of issues](https://github.com
|
|
|
547
547
|
The visulima tsconfig is open-sourced software licensed under the [MIT][license-url]
|
|
548
548
|
|
|
549
549
|
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
550
|
-
[typescript-url]: "typescript"
|
|
550
|
+
[typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
|
|
551
551
|
[license-image]: https://img.shields.io/npm/l/@visulima/tsconfig?color=blueviolet&style=for-the-badge
|
|
552
552
|
[license-url]: LICENSE.md "license"
|
|
553
553
|
[npm-image]: https://img.shields.io/npm/v/@visulima/tsconfig/latest.svg?style=for-the-badge&logo=npm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/tsconfig",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"description": "Find and/or parse the tsconfig.json file from a directory path.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"CHANGELOG.md"
|
|
68
68
|
],
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@visulima/fs": "
|
|
71
|
-
"@visulima/path": "1.3.
|
|
70
|
+
"@visulima/fs": "3.0.1",
|
|
71
|
+
"@visulima/path": "1.3.4",
|
|
72
72
|
"jsonc-parser": "^3.3.1",
|
|
73
73
|
"resolve-pkg-maps": "^1.0.0"
|
|
74
74
|
},
|
|
75
75
|
"engines": {
|
|
76
|
-
"node": ">=18
|
|
76
|
+
"node": ">=18.0.0 <=23.x"
|
|
77
77
|
},
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public",
|