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 fsu = require("../utils/fsUtil");
33var simpleValidator = require ( './simpleValidator' ) ;
44var types = simpleValidator . types ;
55var compilerOptionsValidation = {
6+ allowJs : { type : types . boolean } ,
67 allowNonTsExtensions : { type : types . boolean } ,
78 allowSyntheticDefaultImports : { type : types . boolean } ,
89 allowUnreachableCode : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ var types = simpleValidator.types;
1616 * 3 If its a path : Update the `make relative` code
1717 */
1818interface CompilerOptions {
19+ allowJs ?: boolean ;
1920 allowNonTsExtensions ?: boolean ;
2021 allowSyntheticDefaultImports ?: boolean ;
2122 allowUnreachableCode ?: boolean ;
@@ -67,6 +68,7 @@ interface CompilerOptions {
6768}
6869
6970var compilerOptionsValidation : simpleValidator . ValidationInfo = {
71+ allowJs : { type : types . boolean } ,
7072 allowNonTsExtensions : { type : types . boolean } ,
7173 allowSyntheticDefaultImports : { type : types . boolean } ,
7274 allowUnreachableCode : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments