Skip to content

Commit 0d9b8e6

Browse files
authored
Merge pull request #23 from leon-andria/master
- renaming
2 parents 93b78b9 + 6051b0a commit 0d9b8e6

File tree

7 files changed

+34
-233
lines changed

7 files changed

+34
-233
lines changed

package-lock.json

Lines changed: 4 additions & 210 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"require-dir": "^0.3.2",
3030
"run-sequence": "^1.2.2",
3131
"tslint": "^5.4.3",
32-
"typescript": "^2.3.4",
32+
"typescript": "^2.4.1",
3333
"vinyl-paths": "^2.1.0"
3434
},
3535
"dependencies": {

src/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import * as chalk from 'chalk';
33
import * as tslint from 'tslint';
44
import * as path from 'path';
55

6-
import { OptionsInterface } from './interfaces';
6+
import { TypeCheckerOptions } from './interfaces';
77

88

99
export class Checker {
1010

11-
private options: OptionsInterface;
11+
private options: TypeCheckerOptions;
1212
private tsConfig: string;
1313
private program: ts.Program;
1414
private elapsed: number;

0 commit comments

Comments
 (0)