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');
33var types = simpleValidator . types ;
44var compilerOptionsValidation = {
55 allowNonTsExtensions : { type : types . boolean } ,
6+ allowSyntheticDefaultImports : { type : types . boolean } ,
67 allowUnreachableCode : { type : types . boolean } ,
78 allowUnusedLabels : { type : types . boolean } ,
89 charset : { type : types . string } ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ var types = simpleValidator.types;
1717 */
1818interface CompilerOptions {
1919 allowNonTsExtensions ?: boolean ;
20+ allowSyntheticDefaultImports ?: boolean ;
2021 allowUnreachableCode ?: boolean ;
2122 allowUnusedLabels ?: boolean ;
2223 charset ?: string ;
@@ -66,6 +67,7 @@ interface CompilerOptions {
6667
6768var compilerOptionsValidation : simpleValidator . ValidationInfo = {
6869 allowNonTsExtensions : { type : types . boolean } ,
70+ allowSyntheticDefaultImports : { type : types . boolean } ,
6971 allowUnreachableCode : { type : types . boolean } ,
7072 allowUnusedLabels : { type : types . boolean } ,
7173 charset : { type : types . string } ,
You can’t perform that action at this time.
0 commit comments