Skip to content

Commit 0876bf4

Browse files
committedNov 15, 2015
Change 'simplifiedValidator.types' to shortcut 'types' to be consistent
1 parent fe1947f commit 0876bf4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎dist/main/tsconfig/tsconfig.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ var fsu = require("../utils/fsUtil");
22
var simpleValidator = require('./simpleValidator');
33
var types = simpleValidator.types;
44
var 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 },

‎lib/main/tsconfig/tsconfig.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ interface CompilerOptions {
6161
}
6262

6363
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 },
6666
codepage: { type: types.number },
6767
declaration: { type: types.boolean },
6868
diagnostics: { type: types.boolean },

0 commit comments

Comments
 (0)