File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ var fsu = require("../utils/fsUtil");
22var simpleValidator = require ( './simpleValidator' ) ;
33var types = simpleValidator . types ;
44var compilerOptionsValidation = {
5- allowNonTsExtensions : { type : simpleValidator . types . boolean } ,
6- charset : { type : simpleValidator . types . string } ,
5+ allowNonTsExtensions : { type : types . boolean } ,
6+ charset : { type : types . string } ,
77 codepage : { type : types . number } ,
88 declaration : { type : types . boolean } ,
99 diagnostics : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ interface CompilerOptions {
6161}
6262
6363var compilerOptionsValidation : simpleValidator . ValidationInfo = {
64- allowNonTsExtensions : { type : simpleValidator . types . boolean } ,
65- charset : { type : simpleValidator . types . string } ,
64+ allowNonTsExtensions : { type : types . boolean } ,
65+ charset : { type : types . string } ,
6666 codepage : { type : types . number } ,
6767 declaration : { type : types . boolean } ,
6868 diagnostics : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments