File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ var simpleValidator = require('./simpleValidator');
3
3
var types = simpleValidator . types ;
4
4
var compilerOptionsValidation = {
5
5
allowNonTsExtensions : { type : types . boolean } ,
6
+ allowSyntheticDefaultImports : { type : types . boolean } ,
6
7
allowUnreachableCode : { type : types . boolean } ,
7
8
allowUnusedLabels : { type : types . boolean } ,
8
9
charset : { type : types . string } ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ var types = simpleValidator.types;
17
17
*/
18
18
interface CompilerOptions {
19
19
allowNonTsExtensions ?: boolean ;
20
+ allowSyntheticDefaultImports ?: boolean ;
20
21
allowUnreachableCode ?: boolean ;
21
22
allowUnusedLabels ?: boolean ;
22
23
charset ?: string ;
@@ -66,6 +67,7 @@ interface CompilerOptions {
66
67
67
68
var compilerOptionsValidation : simpleValidator . ValidationInfo = {
68
69
allowNonTsExtensions : { type : types . boolean } ,
70
+ allowSyntheticDefaultImports : { type : types . boolean } ,
69
71
allowUnreachableCode : { type : types . boolean } ,
70
72
allowUnusedLabels : { type : types . boolean } ,
71
73
charset : { type : types . string } ,
You can’t perform that action at this time.
0 commit comments