Skip to content

Commit 2a4519e

Browse files
committed
Remove last bits of strictTuples flag
1 parent 888da3c commit 2a4519e

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

src/harness/unittests/configurationExtension.ts

-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ namespace ts {
1616
strictNullChecks: false
1717
}
1818
},
19-
"/dev/tsconfig.strictTuples.json": {
20-
extends: "./tsconfig",
21-
compilerOptions: {
22-
strictTuples: false
23-
}
24-
},
2519
"/dev/configs/base.json": {
2620
compilerOptions: {
2721
allowJs: true,

src/harness/unittests/transpile.ts

-4
Original file line numberDiff line numberDiff line change
@@ -410,10 +410,6 @@ var x = 0;`, {
410410
options: { compilerOptions: { strictNullChecks: true }, fileName: "input.js", reportDiagnostics: true }
411411
});
412412

413-
transpilesCorrectly("Supports setting 'strictTuples'", "x;", {
414-
options: { compilerOptions: { strictTuples: true }, fileName: "input.js", reportDiagnostics: true }
415-
});
416-
417413
transpilesCorrectly("Supports setting 'stripInternal'", "x;", {
418414
options: { compilerOptions: { stripInternal: true }, fileName: "input.js", reportDiagnostics: true }
419415
});

src/server/protocol.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2542,7 +2542,6 @@ namespace ts.server.protocol {
25422542
sourceRoot?: string;
25432543
strict?: boolean;
25442544
strictNullChecks?: boolean;
2545-
strictTuples?: boolean;
25462545
suppressExcessPropertyErrors?: boolean;
25472546
suppressImplicitAnyIndexErrors?: boolean;
25482547
target?: ScriptTarget | ts.ScriptTarget;

tests/baselines/reference/api/tsserverlibrary.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -6850,7 +6850,6 @@ declare namespace ts.server.protocol {
68506850
sourceRoot?: string;
68516851
strict?: boolean;
68526852
strictNullChecks?: boolean;
6853-
strictTuples?: boolean;
68546853
suppressExcessPropertyErrors?: boolean;
68556854
suppressImplicitAnyIndexErrors?: boolean;
68566855
target?: ScriptTarget | ts.ScriptTarget;

0 commit comments

Comments
 (0)