Skip to content

Commit 2628631

Browse files
committed
fix(tslint): fix d.ts file paths for node_modules dependencies
1 parent 4b0013c commit 2628631

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/tslint/requireParameterTypeRule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// <reference path="../../node_modules/typescript/lib/typescriptServices.d.ts" />
2-
/// <reference path="../../node_modules/gulp-tslint/node_modules/tslint/lib/tslint.d.ts" />
2+
/// <reference path="../../node_modules/tslint/lib/tslint.d.ts" />
33

44
export class Rule extends Lint.Rules.AbstractRule {
55
public static FAILURE_STRING = "missing type declaration";

tools/tslint/requireReturnTypeRule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// <reference path="../../node_modules/typescript/lib/typescriptServices.d.ts" />
2-
/// <reference path="../../node_modules/gulp-tslint/node_modules/tslint/lib/tslint.d.ts" />
2+
/// <reference path="../../node_modules/tslint/lib/tslint.d.ts" />
33

44
export class Rule extends Lint.Rules.AbstractRule {
55
public static FAILURE_STRING = "missing type declaration";

0 commit comments

Comments
 (0)