You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/tsconfig/index.d.ts
+40Lines changed: 40 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1039,6 +1039,14 @@ export type CompilerOptions = {
1039
1039
* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
1040
1040
*/
1041
1041
verbatimModuleSyntax?: boolean|null;
1042
+
/**
1043
+
* Disable full type checking (only critical parse and emit errors will be reported)
1044
+
*/
1045
+
noCheck?: boolean|null;
1046
+
/**
1047
+
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
1048
+
*/
1049
+
isolatedDeclarations?: boolean|null;
1042
1050
}&({
1043
1051
/**
1044
1052
* Enable importing files with any extension, provided a declaration file is present.
@@ -2050,6 +2058,14 @@ export type CompilerOptions = {
2050
2058
* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
2051
2059
*/
2052
2060
verbatimModuleSyntax?: boolean|null;
2061
+
/**
2062
+
* Disable full type checking (only critical parse and emit errors will be reported)
2063
+
*/
2064
+
noCheck?: boolean|null;
2065
+
/**
2066
+
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
2067
+
*/
2068
+
isolatedDeclarations?: boolean|null;
2053
2069
}|null);
2054
2070
/**
2055
2071
* Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.
* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
3195
3211
*/
3196
3212
verbatimModuleSyntax?: boolean|null;
3213
+
/**
3214
+
* Disable full type checking (only critical parse and emit errors will be reported)
3215
+
*/
3216
+
noCheck?: boolean|null;
3217
+
/**
3218
+
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
4212
4236
*/
4213
4237
verbatimModuleSyntax?: boolean|null;
4238
+
/**
4239
+
* Disable full type checking (only critical parse and emit errors will be reported)
4240
+
*/
4241
+
noCheck?: boolean|null;
4242
+
/**
4243
+
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.
5228
5260
*/
5229
5261
verbatimModuleSyntax?: boolean|null;
5262
+
/**
5263
+
* Disable full type checking (only critical parse and emit errors will be reported)
5264
+
*/
5265
+
noCheck?: boolean|null;
5266
+
/**
5267
+
* Require sufficient annotation on exports so other tools can trivially generate declaration files.
Copy file name to clipboardExpand all lines: packages/tsconfig/schema.json
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1627,6 +1627,26 @@
1627
1627
"null"
1628
1628
],
1629
1629
"markdownDescription": "Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n\nSee more: https://www.typescriptlang.org/tsconfig#verbatimModuleSyntax"
1630
+
},
1631
+
"noCheck": {
1632
+
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
1633
+
"description": "Disable full type checking (only critical parse and emit errors will be reported)",
1634
+
"type": [
1635
+
"boolean",
1636
+
"null"
1637
+
],
1638
+
"default": false,
1639
+
"markdownDescription": "Disable full type checking (only critical parse and emit errors will be reported)\n\nSee more: https://www.typescriptlang.org/tsconfig#noCheck"
1640
+
},
1641
+
"isolatedDeclarations": {
1642
+
"$comment": "The value of 'null' is UNDOCUMENTED (https://github.com/microsoft/TypeScript/pull/18058).",
1643
+
"description": "Require sufficient annotation on exports so other tools can trivially generate declaration files.",
1644
+
"type": [
1645
+
"boolean",
1646
+
"null"
1647
+
],
1648
+
"default": false,
1649
+
"markdownDescription": "Require sufficient annotation on exports so other tools can trivially generate declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations"
0 commit comments