diff --git a/minimatch/minimatch.d.ts b/minimatch/index.d.ts
similarity index 99%
rename from minimatch/minimatch.d.ts
rename to minimatch/index.d.ts
index 3700d9e237..fa3fdd217c 100644
--- a/minimatch/minimatch.d.ts
+++ b/minimatch/index.d.ts
@@ -3,8 +3,6 @@
// Definitions by: vvakame
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-
declare function M(target: string, pattern: string, options?: M.IOptions): boolean;
declare namespace M {
diff --git a/minimatch/minimatch-tests.ts b/minimatch/minimatch-tests.ts
index 38c699e0f0..e47146a18a 100644
--- a/minimatch/minimatch-tests.ts
+++ b/minimatch/minimatch-tests.ts
@@ -1,6 +1,4 @@
-///
-
-import mm = require("minimatch");
+import mm = require("./");
var pattern = "**/*.ts";
var options = {