Skip to content

Commit

Permalink
fix: re-introduce allowed extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
acao committed Sep 20, 2020
1 parent de0021b commit 70625e1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ import { findGraphQLTags, DEFAULT_TAGS } from './findGraphQLTags';

export const DEFAULT_SUPPORTED_EXTENSIONS = ['.js', '.ts', '.jsx', '.tsx'];

export const DEFAULT_SUPPORTED_GRAPHQL_EXTENSIONS = ['.graphql'];
export const DEFAULT_SUPPORTED_GRAPHQL_EXTENSIONS = [
'.graphql',
'.graphqls',
'.gql',
];

/**
* Helper functions to perform requested services from client/server.
Expand Down

0 comments on commit 70625e1

Please sign in to comment.