File tree 2 files changed +4
-4
lines changed
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");
2
2
var simpleValidator = require ( './simpleValidator' ) ;
3
3
var types = simpleValidator . types ;
4
4
var compilerOptionsValidation = {
5
- allowNonTsExtensions : { type : simpleValidator . types . boolean } ,
6
- charset : { type : simpleValidator . types . string } ,
5
+ allowNonTsExtensions : { type : types . boolean } ,
6
+ charset : { type : types . string } ,
7
7
codepage : { type : types . number } ,
8
8
declaration : { type : types . boolean } ,
9
9
diagnostics : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ interface CompilerOptions {
61
61
}
62
62
63
63
var 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 } ,
66
66
codepage : { type : types . number } ,
67
67
declaration : { type : types . boolean } ,
68
68
diagnostics : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments