Validate @babel/preset-env options (#8031)

This commit is contained in:
Serhii Nanovskyi
2018-06-10 02:38:14 +03:00
committed by Brian Ng
parent 110779e9f3
commit 3de053cc6c
10 changed files with 226 additions and 46 deletions

View File

@@ -166,3 +166,9 @@ declare module "convert-source-map" {
generateMapFileComment(path: string, options?: ?{ multiline: boolean }): string,
};
}
declare module "js-levenshtein" {
declare module.exports: {
(string, string): number,
};
}