@@ -277,6 +277,10 @@ export type CompilerOptions = {
277277 * Disable strict checking of generic signatures in function types.
278278 */
279279 noStrictGenericChecks ?: boolean | null ;
280+ /**
281+ * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.
282+ */
283+ out ?: string | null ;
280284 /**
281285 * Skip type checking .d.ts files that are included with TypeScript.
282286 */
@@ -1373,6 +1377,10 @@ export type CompilerOptions = {
13731377 * Disable strict checking of generic signatures in function types.
13741378 */
13751379 noStrictGenericChecks ?: boolean | null ;
1380+ /**
1381+ * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.
1382+ */
1383+ out ?: string | null ;
13761384 /**
13771385 * Skip type checking .d.ts files that are included with TypeScript.
13781386 */
@@ -2599,6 +2607,10 @@ export interface TsNodeDefinition {
25992607 * Disable strict checking of generic signatures in function types.
26002608 */
26012609 noStrictGenericChecks ?: boolean | null ;
2610+ /**
2611+ * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.
2612+ */
2613+ out ?: string | null ;
26022614 /**
26032615 * Skip type checking .d.ts files that are included with TypeScript.
26042616 */
@@ -3694,6 +3706,10 @@ export interface TsNodeDefinition {
36943706 * Disable strict checking of generic signatures in function types.
36953707 */
36963708 noStrictGenericChecks ?: boolean | null ;
3709+ /**
3710+ * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.
3711+ */
3712+ out ?: string | null ;
36973713 /**
36983714 * Skip type checking .d.ts files that are included with TypeScript.
36993715 */
@@ -4792,6 +4808,10 @@ export interface TsNodeDefinition {
47924808 * Disable strict checking of generic signatures in function types.
47934809 */
47944810 noStrictGenericChecks ?: boolean | null ;
4811+ /**
4812+ * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.
4813+ */
4814+ out ?: string | null ;
47954815 /**
47964816 * Skip type checking .d.ts files that are included with TypeScript.
47974817 */
0 commit comments