Skip to content

Commit

Permalink
type check
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasneirynck committed Sep 1, 2020
1 parent 31c4963 commit 63671b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/maps/server/mvt/__tests__/tile_searches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as fs from 'fs';

const search000path = path.resolve(__dirname, './json/0_0_0_search.json');
const search000raw = fs.readFileSync(search000path);
const search000json = JSON.parse(search000raw); // Prefer require() over setting the compiler options, which affect production modules as well
const search000json = JSON.parse((search000raw as unknown) as string);

export const TILE_SEARCHES = {
'0.0.0': {
Expand Down

0 comments on commit 63671b2

Please sign in to comment.