Skip to content

Commit 835788f

Browse files
feat: update schema
1 parent dd54650 commit 835788f

File tree

5 files changed

+37
-2
lines changed

5 files changed

+37
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@json-types/tsconfig": minor
3+
---
4+
5+
Update schema

packages/tsconfig/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ import schema from "@json-types/tsconfig/schema.json";
2222

2323
TypeScript types generated automatically every night and published when there are changes.
2424

25-
- Last change: 2024-07-11T01:25:18.263Z
25+
- Last change: 2024-07-26T01:24:48.067Z
2626
- Source URL: https://json.schemastore.org/tsconfig.json

packages/tsconfig/index.d.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,6 +1047,10 @@ export type CompilerOptions = {
10471047
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
10481048
*/
10491049
isolatedDeclarations?: boolean | null;
1050+
/**
1051+
* Check side effect imports.
1052+
*/
1053+
noUncheckedSideEffectImports?: boolean | null;
10501054
} & ({
10511055
/**
10521056
* Enable importing files with any extension, provided a declaration file is present.
@@ -2066,6 +2070,10 @@ export type CompilerOptions = {
20662070
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
20672071
*/
20682072
isolatedDeclarations?: boolean | null;
2073+
/**
2074+
* Check side effect imports.
2075+
*/
2076+
noUncheckedSideEffectImports?: boolean | null;
20692077
} | null);
20702078
/**
20712079
* Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.
@@ -3218,6 +3226,10 @@ export interface TsNodeDefinition {
32183226
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
32193227
*/
32203228
isolatedDeclarations?: boolean | null;
3229+
/**
3230+
* Check side effect imports.
3231+
*/
3232+
noUncheckedSideEffectImports?: boolean | null;
32213233
} | null) &
32223234
(
32233235
| ({
@@ -4243,6 +4255,10 @@ export interface TsNodeDefinition {
42434255
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
42444256
*/
42454257
isolatedDeclarations?: boolean | null;
4258+
/**
4259+
* Check side effect imports.
4260+
*/
4261+
noUncheckedSideEffectImports?: boolean | null;
42464262
} | null)
42474263
| (({
42484264
/**
@@ -5267,6 +5283,10 @@ export interface TsNodeDefinition {
52675283
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
52685284
*/
52695285
isolatedDeclarations?: boolean | null;
5286+
/**
5287+
* Check side effect imports.
5288+
*/
5289+
noUncheckedSideEffectImports?: boolean | null;
52705290
} | null) &
52715291
null)
52725292
);

packages/tsconfig/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"tsconfig"
1212
],
1313
"x-json-types": {
14-
"lastChangeDate": "2024-07-11T01:25:18.263Z"
14+
"lastChangeDate": "2024-07-26T01:24:48.067Z"
1515
},
1616
"homepage": "https://github.com/swordev/json-types/tree/main/packages/tsconfig",
1717
"bugs": {

packages/tsconfig/schema.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,6 +1647,16 @@
16471647
],
16481648
"default": false,
16491649
"markdownDescription": "Require sufficient annotation on exports so other tools can trivially generate declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations"
1650+
},
1651+
"noUncheckedSideEffectImports": {
1652+
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
1653+
"description": "Check side effect imports.",
1654+
"type": [
1655+
"boolean",
1656+
"null"
1657+
],
1658+
"default": false,
1659+
"markdownDescription": "Check side effect imports.\n\nSee more: https://www.typescriptlang.org/tsconfig#noUncheckedSideEffectImports"
16501660
}
16511661
}
16521662
}

0 commit comments

Comments
 (0)