@visulima/tsconfig 1.1.18 → 1.1.20
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 +15 -0
- package/README.md +13 -13
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## @visulima/tsconfig [1.1.20](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.19...@visulima/tsconfig@1.1.20) (2025-09-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Dependencies
|
|
5
|
+
|
|
6
|
+
* **@visulima/fs:** upgraded to 3.1.6
|
|
7
|
+
|
|
8
|
+
## @visulima/tsconfig [1.1.19](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.18...@visulima/tsconfig@1.1.19) (2025-06-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* **@visulima/fs:** upgraded to 3.1.5
|
|
14
|
+
* **@visulima/path:** upgraded to 1.4.0
|
|
15
|
+
|
|
1
16
|
## @visulima/tsconfig [1.1.18](https://github.com/visulima/visulima/compare/@visulima/tsconfig@1.1.17...@visulima/tsconfig@1.1.18) (2025-06-03)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -209,7 +209,7 @@ Instructs the TypeScript compiler how to watch files.
|
|
|
209
209
|
function findTsConfig(cwd?, options?): Promise<TsConfigResult>;
|
|
210
210
|
```
|
|
211
211
|
|
|
212
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:30](https://github.com/visulima/visulima/blob/
|
|
212
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:30](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L30)
|
|
213
213
|
|
|
214
214
|
An asynchronous function that retrieves the TSConfig by searching for the "tsconfig.json" first,
|
|
215
215
|
second attempt is to look for the "jsconfig.json" file from a given current working directory.
|
|
@@ -246,7 +246,7 @@ An `Error` when the "tsconfig.json" file is not found.
|
|
|
246
246
|
function findTsConfigSync(cwd?, options?): TsConfigResult;
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visulima/visulima/blob/
|
|
249
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L69)
|
|
250
250
|
|
|
251
251
|
#### Parameters
|
|
252
252
|
|
|
@@ -270,7 +270,7 @@ Defined in: [packages/tsconfig/src/find-tsconfig.ts:69](https://github.com/visul
|
|
|
270
270
|
function readTsConfig(tsconfigPath, options?): object;
|
|
271
271
|
```
|
|
272
272
|
|
|
273
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:460](https://github.com/visulima/visulima/blob/
|
|
273
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:460](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/read-tsconfig.ts#L460)
|
|
274
274
|
|
|
275
275
|
#### Parameters
|
|
276
276
|
|
|
@@ -360,7 +360,7 @@ Instructs the TypeScript compiler how to watch files.
|
|
|
360
360
|
function writeTsConfig(tsConfig, options): Promise<void>;
|
|
361
361
|
```
|
|
362
362
|
|
|
363
|
-
Defined in: [packages/tsconfig/src/write-tsconfig.ts:17](https://github.com/visulima/visulima/blob/
|
|
363
|
+
Defined in: [packages/tsconfig/src/write-tsconfig.ts:17](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/write-tsconfig.ts#L17)
|
|
364
364
|
|
|
365
365
|
An asynchronous function that writes the provided TypeScript configuration object to a tsconfig.json file.
|
|
366
366
|
|
|
@@ -394,7 +394,7 @@ The return type of function is `Promise<void>`.
|
|
|
394
394
|
function writeTsConfigSync(tsConfig, options): void;
|
|
395
395
|
```
|
|
396
396
|
|
|
397
|
-
Defined in: [packages/tsconfig/src/write-tsconfig.ts:35](https://github.com/visulima/visulima/blob/
|
|
397
|
+
Defined in: [packages/tsconfig/src/write-tsconfig.ts:35](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/write-tsconfig.ts#L35)
|
|
398
398
|
|
|
399
399
|
A function that writes the provided TypeScript configuration object to a tsconfig.json file.
|
|
400
400
|
|
|
@@ -428,7 +428,7 @@ The return type of function is `Promise<void>`.
|
|
|
428
428
|
const implicitBaseUrlSymbol: typeof implicitBaseUrlSymbol;
|
|
429
429
|
```
|
|
430
430
|
|
|
431
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visulima/visulima/blob/
|
|
431
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/read-tsconfig.ts#L457)
|
|
432
432
|
|
|
433
433
|
***
|
|
434
434
|
|
|
@@ -438,7 +438,7 @@ Defined in: [packages/tsconfig/src/read-tsconfig.ts:457](https://github.com/visu
|
|
|
438
438
|
type FindTsConfigOptions = ReadTsConfigOptions & object;
|
|
439
439
|
```
|
|
440
440
|
|
|
441
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:10](https://github.com/visulima/visulima/blob/
|
|
441
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:10](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L10)
|
|
442
442
|
|
|
443
443
|
#### Type declaration
|
|
444
444
|
|
|
@@ -464,7 +464,7 @@ optional configFileName: string;
|
|
|
464
464
|
type ReadTsConfigOptions = object;
|
|
465
465
|
```
|
|
466
466
|
|
|
467
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:444](https://github.com/visulima/visulima/blob/
|
|
467
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:444](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/read-tsconfig.ts#L444)
|
|
468
468
|
|
|
469
469
|
#### Properties
|
|
470
470
|
|
|
@@ -474,7 +474,7 @@ Defined in: [packages/tsconfig/src/read-tsconfig.ts:444](https://github.com/visu
|
|
|
474
474
|
optional tscCompatible: "5.3" | "5.4" | "5.5" | "5.6" | true;
|
|
475
475
|
```
|
|
476
476
|
|
|
477
|
-
Defined in: [packages/tsconfig/src/read-tsconfig.ts:452](https://github.com/visulima/visulima/blob/
|
|
477
|
+
Defined in: [packages/tsconfig/src/read-tsconfig.ts:452](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/read-tsconfig.ts#L452)
|
|
478
478
|
|
|
479
479
|
Make the configuration compatible with the specified TypeScript version.
|
|
480
480
|
|
|
@@ -494,7 +494,7 @@ undefined
|
|
|
494
494
|
type TsConfigJsonResolved = Except<TsConfigJson, "extends">;
|
|
495
495
|
```
|
|
496
496
|
|
|
497
|
-
Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visulima/blob/
|
|
497
|
+
Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/types.ts#L3)
|
|
498
498
|
|
|
499
499
|
***
|
|
500
500
|
|
|
@@ -504,7 +504,7 @@ Defined in: [packages/tsconfig/src/types.ts:3](https://github.com/visulima/visul
|
|
|
504
504
|
type TsConfigResult = object;
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:15](https://github.com/visulima/visulima/blob/
|
|
507
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:15](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L15)
|
|
508
508
|
|
|
509
509
|
#### Properties
|
|
510
510
|
|
|
@@ -514,7 +514,7 @@ Defined in: [packages/tsconfig/src/find-tsconfig.ts:15](https://github.com/visul
|
|
|
514
514
|
config: TsConfigJsonResolved;
|
|
515
515
|
```
|
|
516
516
|
|
|
517
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:16](https://github.com/visulima/visulima/blob/
|
|
517
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:16](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L16)
|
|
518
518
|
|
|
519
519
|
##### path
|
|
520
520
|
|
|
@@ -522,7 +522,7 @@ Defined in: [packages/tsconfig/src/find-tsconfig.ts:16](https://github.com/visul
|
|
|
522
522
|
path: string;
|
|
523
523
|
```
|
|
524
524
|
|
|
525
|
-
Defined in: [packages/tsconfig/src/find-tsconfig.ts:17](https://github.com/visulima/visulima/blob/
|
|
525
|
+
Defined in: [packages/tsconfig/src/find-tsconfig.ts:17](https://github.com/visulima/visulima/blob/49d02a7307168d9d2400e846d6f822a631d536e7/packages/tsconfig/src/find-tsconfig.ts#L17)
|
|
526
526
|
|
|
527
527
|
<!-- /TYPEDOC -->
|
|
528
528
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/tsconfig",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.20",
|
|
4
4
|
"description": "Find and/or parse the tsconfig.json file from a directory path.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"CHANGELOG.md"
|
|
68
68
|
],
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@visulima/fs": "3.1.
|
|
71
|
-
"@visulima/path": "1.
|
|
70
|
+
"@visulima/fs": "3.1.6",
|
|
71
|
+
"@visulima/path": "1.4.0",
|
|
72
72
|
"jsonc-parser": "^3.3.1",
|
|
73
73
|
"resolve-pkg-maps": "^1.0.0"
|
|
74
74
|
},
|