Remove last bits of strictTuples flag

This commit is contained in:
Nathan Shively-Sanders
2017-11-06 16:22:30 -08:00
parent 888da3c3da
commit 2a4519eb0f
4 changed files with 0 additions and 12 deletions

View File

@@ -16,12 +16,6 @@ namespace ts {
strictNullChecks: false
}
},
"/dev/tsconfig.strictTuples.json": {
extends: "./tsconfig",
compilerOptions: {
strictTuples: false
}
},
"/dev/configs/base.json": {
compilerOptions: {
allowJs: true,

View File

@@ -410,10 +410,6 @@ var x = 0;`, {
options: { compilerOptions: { strictNullChecks: true }, fileName: "input.js", reportDiagnostics: true }
});
transpilesCorrectly("Supports setting 'strictTuples'", "x;", {
options: { compilerOptions: { strictTuples: true }, fileName: "input.js", reportDiagnostics: true }
});
transpilesCorrectly("Supports setting 'stripInternal'", "x;", {
options: { compilerOptions: { stripInternal: true }, fileName: "input.js", reportDiagnostics: true }
});

View File

@@ -2542,7 +2542,6 @@ namespace ts.server.protocol {
sourceRoot?: string;
strict?: boolean;
strictNullChecks?: boolean;
strictTuples?: boolean;
suppressExcessPropertyErrors?: boolean;
suppressImplicitAnyIndexErrors?: boolean;
target?: ScriptTarget | ts.ScriptTarget;