Home
last modified time | relevance | path

Searched refs:matchTsConfigPathAlias (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/utils/tsconfig/__tests__/
H A DmatchTsConfigPathAlias.test.ts1 import { matchTsConfigPathAlias } from '../matchTsConfigPathAlias';
3 describe(matchTsConfigPathAlias, () => {
7 expect(matchTsConfigPathAlias(pathsKeys, moduleName)).toEqual({
15 expect(matchTsConfigPathAlias(pathsKeys, moduleName)).toEqual({
23 expect(matchTsConfigPathAlias(pathsKeys, moduleName)).toEqual({
/expo/packages/@expo/cli/src/utils/tsconfig/
H A DresolveWithTsConfigPaths.ts4 import { matchTsConfigPathAlias } from './matchTsConfigPathAlias';
37 const matched = matchTsConfigPathAlias(aliases, request.moduleName);
H A DmatchTsConfigPathAlias.ts105 export function matchTsConfigPathAlias(pathsKeys: string[], moduleName: string) { function