UNPKG

498 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.DEFAULT_JEST_TEST_MATCH = exports.JSON_REGEX = exports.JS_JSX_REGEX = exports.TS_TSX_REGEX = exports.EXTENSION_REGEX = exports.LINE_FEED = void 0;
4exports.LINE_FEED = '\n';
5exports.EXTENSION_REGEX = /\.[^.]+$/;
6exports.TS_TSX_REGEX = /\.tsx?$/;
7exports.JS_JSX_REGEX = /\.jsx?$/;
8exports.JSON_REGEX = /\.json$/i;
9exports.DEFAULT_JEST_TEST_MATCH = ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'];