Skip to content

Typescript 2.3.2 is trying to compile node_modules #15755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
robin-anil opened this issue May 11, 2017 · 27 comments
Closed

Typescript 2.3.2 is trying to compile node_modules #15755

robin-anil opened this issue May 11, 2017 · 27 comments
Labels
Bug A bug in TypeScript Fixed A PR has been merged for this issue

Comments

@robin-anil
Copy link

The error I get it is in lodash.

ERROR in [at-loader] ./node_modules/lodash/_equalByTag.js:49:5 
    TS7029: Fallthrough case in switch.

ERROR in [at-loader] ./node_modules/lodash/_equalByTag.js:81:5 
    TS7029: Fallthrough case in switch.

My tsconfig.json is as follows

{
  "compilerOptions": {
    "module": "es6",
    "target": "es6",
    "jsx": "preserve",
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "strictNullChecks": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "moduleResolution": "node",
    "allowJs": true,
    "outDir": "dist",
    "lib": [
      "es5",
      "es6",
      "es7",
      "es2017",
      "dom"
    ],
    "baseUrl": ".",
    "rootDir":  "..",
    "paths": {
      "actions/*": ["src/js/actions/*"],
      "components/*": ["src/js/components/*"],
      "routes/*": ["src/js/routes/*"],
      "state/*": ["src/js/state/*"],
      "utils/*": ["src/js/utils/*"],

      "shared/*": ["../shared/src/js/*"],
      "*": ["node_modules/@types/*", "node_modules/*"]
    }
  },
  "awesomeTypescriptLoaderOptions": {
    "useCache": true
  },
  "include": [
    "src/js/**/*",
    "../shared/src/js/**/*",
  ]
}
@robin-anil
Copy link
Author

I tried adding exclude, but given node_modules should be excluded by default, it didn't help.
Any clues will be appreciated.

@robin-anil robin-anil changed the title Typescript is trying to compile node_modules Typescript 2.3.2 is trying to compile node_modules May 11, 2017
@robin-anil
Copy link
Author

I can get this passing without noFallthroughCasesInSwitch. That I feel is just masking a real bug here.

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

i am not able to reproduce this on a small project with jsut a single .js file and npm install lodash, can you share more context.

@mhegazy mhegazy added the Needs More Info The issue still hasn't been fully clarified label May 11, 2017
@robin-anil
Copy link
Author

robin-anil commented May 11, 2017

Yeah I can't either... Is there a way for you typescript compiler to generate an ast graph and dump it so that it can be shared.

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

use --listFiles to see what files the compiler picked up. it should not have node_modules\lodash* in there,
use --traceResolutions to see why that was added.

@robin-anil
Copy link
Author

tsc --listFiles |grep lodash
node_modules/lodash/_equalByTag.js(49,5): error TS7029: Fallthrough case in switch.
node_modules/lodash/_equalByTag.js(81,5): error TS7029: Fallthrough case in switch.
/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts
/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.d.ts
/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.d.ts
/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.d.ts
/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.d.ts
/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/_mapping.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/placeholder.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/_baseConvert.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/identity.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_freeGlobal.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_root.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Symbol.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getRawTag.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_objectToString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseGetTag.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isObject.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isFunction.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_coreJsData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isMasked.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_toSource.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsNative.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getValue.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getNative.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_WeakMap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_metaMap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseSetData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseCreate.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createCtor.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createBind.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_apply.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_composeArgs.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_composeArgsRight.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_countHolders.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseLodash.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_LazyWrapper.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/noop.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_realNames.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getFuncName.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_LodashWrapper.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isObjectLike.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_copyArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_wrapperClone.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/wrapperLodash.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isLaziable.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_shortOut.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getWrapDetails.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_insertWrapDetails.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/constant.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_defineProperty.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseSetToString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setToString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayEach.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseFindIndex.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsNaN.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_strictIndexOf.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIndexOf.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayIncludes.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_updateWrapDetails.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setWrapToString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createRecurry.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getHolder.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isIndex.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_reorder.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_replaceHolders.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createHybrid.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createCurry.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createPartial.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mergeData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isSymbol.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/toNumber.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/toFinite.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/toInteger.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createWrap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/ary.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseAssignValue.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/eq.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_assignValue.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_copyObject.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseTimes.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsArguments.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isArguments.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/stubFalse.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isBuffer.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isLength.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsTypedArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseUnary.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_nodeUtil.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isTypedArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayLikeKeys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isPrototype.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_overArg.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_nativeKeys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseKeys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/isArrayLike.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/keys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseAssign.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_listCacheClear.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_assocIndexOf.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_listCacheDelete.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_listCacheGet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_listCacheHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_listCacheSet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_ListCache.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stackClear.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stackDelete.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stackGet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stackHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Map.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_nativeCreate.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hashClear.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hashDelete.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hashGet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hashHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hashSet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Hash.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapCacheClear.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isKeyable.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getMapData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapCacheDelete.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapCacheGet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapCacheHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapCacheSet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_MapCache.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stackSet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Stack.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_nativeKeysIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseKeysIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/keysIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseAssignIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneBuffer.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayFilter.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/stubArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getSymbols.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_copySymbols.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayPush.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getPrototype.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getSymbolsIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_copySymbolsIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseGetAllKeys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getAllKeys.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getAllKeysIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_DataView.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Promise.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Set.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getTag.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_initCloneArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_Uint8Array.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneArrayBuffer.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneDataView.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_addMapEntry.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayReduce.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_mapToArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneMap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneRegExp.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_addSetEntry.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setToArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneSet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneSymbol.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cloneTypedArray.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_initCloneByTag.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_initCloneObject.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseClone.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/clone.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/curry.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setCacheAdd.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_setCacheHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_SetCache.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arraySome.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_cacheHas.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_equalArrays.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_equalByTag.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_equalObjects.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsEqualDeep.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsEqual.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIsMatch.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isStrictComparable.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_getMatchData.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_matchesStrictComparable.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseMatches.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isKey.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/memoize.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_memoizeCapped.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_stringToPath.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_arrayMap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseToString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/toString.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_castPath.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_toKey.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseGet.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/get.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseHasIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_hasPath.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/hasIn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseMatchesProperty.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseProperty.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_basePropertyDeep.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/property.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseIteratee.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/iteratee.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_isFlattenable.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseFlatten.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/flatten.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_overRest.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_flatRest.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/rearg.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/toPath.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/_util.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/convert.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createFlow.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/flowRight.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/flowRight.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createBaseFor.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseFor.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseForOwn.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_createBaseEach.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseEach.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseFilter.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/filter.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/_baseMap.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/map.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.isarray/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.istypedarray/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash._getnative/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.isarguments/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.keys/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash._baseisequal/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash._bindcallback/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.isequal/index.js
/Users/robinanil/work/admin/clowncar/node_modules/lodash.isplainobject/index.js

and traceResolution says

tsc --traceResolution |grep lodash
======== Resolving module 'lodash/defaults' from '/Users/robinanil/work/admin/clowncar/node_modules/react-dnd-html5-backend/lib/HTML5Backend.js'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/defaults'.
'paths' option is specified, looking for a pattern to match module name 'lodash/defaults'.
Module name 'lodash/defaults', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/defaults'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults.d.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/package.json' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash/defaults' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.d.ts'. ========
======== Resolving module '../index' from '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/defaults/index.d.ts'. ========
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name '../index' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash/union' from '/Users/robinanil/work/admin/clowncar/node_modules/react-dnd-html5-backend/lib/EnterLeaveCounter.js'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/union'.
'paths' option is specified, looking for a pattern to match module name 'lodash/union'.
Module name 'lodash/union', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/union'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union.d.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/package.json' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash/union' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.d.ts'. ========
======== Resolving module 'lodash/without' from '/Users/robinanil/work/admin/clowncar/node_modules/react-dnd-html5-backend/lib/EnterLeaveCounter.js'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/without'.
'paths' option is specified, looking for a pattern to match module name 'lodash/without'.
Module name 'lodash/without', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/without'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without.d.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/package.json' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash/without' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.d.ts'. ========
======== Resolving module '../index' from '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/union/index.d.ts'. ========
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name '../index' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module '../index' from '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/without/index.d.ts'. ========
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name '../index' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash/memoize' from '/Users/robinanil/work/admin/clowncar/node_modules/react-dnd-html5-backend/lib/BrowserDetector.js'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/memoize'.
'paths' option is specified, looking for a pattern to match module name 'lodash/memoize'.
Module name 'lodash/memoize', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/memoize'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize.d.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/package.json' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash/memoize' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.d.ts'. ========
======== Resolving module '../index' from '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/memoize/index.d.ts'. ========
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name '../index' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/ContextProvider.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/Environment.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/Portal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/connect.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/AccessListActions.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/constants.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/BusinessActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/protoUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/CalendarActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/calendarFilterUtils.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/HandSellActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/dinerUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/OnboardingActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/time.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/logger.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/OptionsActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/ticketUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/PackagesActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/ServicesActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/TemplateInfoActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/TicketsActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/actions/WaitlistReportActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/GuestProfileActions.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/PatronStatsActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/reporting.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/metrics/constructors.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/money.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/FinancialReportsActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/networkPrinterUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/PatronSearchActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/QuestionsActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/actions/SupportActions.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/menu/Menu.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/menu/MenuNavLink.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/ScrollLockComponent.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/scroll.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/BusinessesRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/Input.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/TextInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/selectors/searchBusinessesSelector.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/utils/connect.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/queryUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/BusinessRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/BusinessInternalDetails.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/SubscriptionChooser.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/Select.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/time/DisplayDate.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/time/DisplayTime.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/patron.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/ModalWrapper.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/globalEventsHelper.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/DashboardRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/DateRangePickerModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/date-range-picker/DateRangePicker.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/charts/LineChart.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/charts/smoothing.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/ClowncarMetrics.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/FeaturesRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/AddFeatureForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/UpdateBusinessOverrideForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/AddBusinessOverrideForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/GrossSalesRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/GrossSales.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash.get' from '/Users/robinanil/work/admin/clowncar/node_modules/csv-stringify/lib/index.js'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash.get'.
'paths' option is specified, looking for a pattern to match module name 'lodash.get'.
Module name 'lodash.get', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash.get'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.d.ts' does not exist.
Directory '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get' does not exist, skipping all lookups in it.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash.get'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.d.ts' does not exist.
Loading module 'lodash.get' from 'node_modules' folder, target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.d.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.d.ts' does not exist.
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash.get'.
'paths' option is specified, looking for a pattern to match module name 'lodash.get'.
Module name 'lodash.get', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash.get'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get', target file type 'JavaScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.js' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get.jsx' does not exist.
Directory '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.get' does not exist, skipping all lookups in it.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash.get'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get', target file type 'JavaScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.js' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get.jsx' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.js' exist - use it as a name resolution result.
======== Module name 'lodash.get' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/lodash.get/index.js'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/HealthMetricsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/ActiveBusinessChart.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/RadioButtons.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/CrawlSearch.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/CrawlSearchCard.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/Lead.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/AutoCompleteInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/ViewLead.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/AddEngagementForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/LeadHistory.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/HistoryEntry.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/LeadZeppelinSearchForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/CloseLead.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/leads/LeadSearchCard.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/LogsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/LogSearchForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/sidebar/SidebarMenu.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/sidebar/SidebarMenuSection.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/onboarding/ArchivedInvitesRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/onboarding/InvitesListItem.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/onboarding/InvitesRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/NewInviteForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/supportedCountries.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/ServiceEventsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/forms/ServiceDateForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/routes/logged-in/SubscriptionsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/patrons/PatronSearch.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/components/patrons/PatronSearchCard.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/middleware/TockApiMiddleware.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/AjaxActions.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/state/businesses.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/state/businessGroups.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/state/leadZeppelin.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/state/onboarding.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/clowncar/src/js/state/patrons.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/state/app.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/rollbar.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/responsive.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/LoggedInRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/AppRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/Announcements.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/help/HelpCenterContent.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/help/HelpCenter.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/help/HelpCenterFaqs.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/help/HelpCenterReleases.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/help/HelpCenterSearchResult.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/modals/UrgentSupportModal.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/calendar/DayRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/day-notes/DayNotes.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/day-notes/DayNotesModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/NewlineEscapedText.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/booking-filter-dropdown/BookingFilterDropdown.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/Checkboxes.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/CustomDropdown.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/bookingFilterDropdown.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/tagUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/ServicePicker.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/TablesByTime.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/EntitiesByTime.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/TicketGroup.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/CalendarItem.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/filters/moneyFilter.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/constants/TicketGroupStateConstants.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/purchaseUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/DayCalendarSidebar.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/BookingModal.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/BookingProfileForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/AppliedTags.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/AuditInfo.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/BusinessGuestProfile.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/noteUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/constants/PatronNoteTypes.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/EditQuestionsResponseModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/forms/EditQuestionsForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/forms/QuestionList.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/CheckboxesWithOther.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/CheckboxOther.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/RadioButtonsWithOther.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/RadioButtonOther.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/QuestionResponses.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/SelectTags.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/guestProfileUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/inputUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/questionUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/Receipt.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/GuestProfileForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/GuestProfileInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/GuestProfileCard.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/GuestProfileViewModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/GuestNotesAndTags.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/NoteForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/ProfileTags.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/UpdateTagForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/ImportedProfileData.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/ProfileAddressField.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/PatronInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/PatronStats.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/ProfileDateField.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/buttons/IconButton.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/PatronAssociationSearchInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/ProfilePhoneField.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/PhoneField.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/timeUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/profile/PurchaseTimeline.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/profile/TimelineEvent.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/profile/TimelineActionLineItem.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/SendConfirmationDialog.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/SendConfirmationForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/stringUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/Tabs.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/BookingsList.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/BookingsListItem.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/CalendarSummarySidePanel.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/calendarItems.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/ticketGroupHelpers.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/CalendarItemActionsModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/CalendarItemDetails.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/MiniPurchaseSummary.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/purchaseOrderHelpers.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/stripeHelpers.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/Counter.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/HandSell.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/HandSellManager.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/AddCustomChargeModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/CardFormModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/GiftCardsForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/payment/CardForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/forms/CreditCardForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/creditCardFilters.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/creditCards.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/HandSellSummaryModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/EmailPolicy.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/TimeInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/filters/numberFilter.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/RefundTypeModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/ReservationModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/SelectExperienceForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/SelectGuestModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/forms/PatronInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/crm/PatronCard.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/SearchInput.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/hand_sell/SelectType.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/PurchaseDetailsSummary.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/PurchaseSummary.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/PaymentCardDetails.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/selectors/experienceSelectors.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/breadcrumb.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/Header.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/AuthSwitcher.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/CancelModalPage.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/CompManager.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/CompForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/RescheduleDetailsModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/purchases/TransferDetailsModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ReschedulingToolbar.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/TicketGroupManager.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/TicketGroupEditForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/templates/TableInput.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/ticket_groups/TicketGroupReceiptPreview.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/monitorProps.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/selectors/serviceTypesSelector.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/selectors/bookingModalSelector.ts'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/selectors/currentBusinessSelector.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/selectors/categorizedTagsSelector.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/selectors/priorityTagsSelector.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/calendarUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/calendar/MonthRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/calendar/MonthCalendarDay.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/charts/PieChart.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/ActiveExperiencesRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/experiences/ExperiencesList.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/breadcrumbs/Breadcrumbs.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/utils/experienceUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/active/ArchiveExperienceRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/active/NewExperienceRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/constants/ServiceTypeConstants.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/DuplicateExperienceRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/ArchivedExperiencesRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/archived/UnarchiveExperienceRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/ExperienceRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperienceAccessForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/ExperienceCancellationPolicyRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/settings/cancellation/RadioGroupPolicySelector.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/ExperienceCommunicationRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperienceCommunicationForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperienceFeesForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperienceInformationForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperiencePricingForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/ExperienceQuestionsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/forms/experiences/ExperienceQuestionForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/questions/ExperienceQuestionsPreviewRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/forms/QuestionsForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/forms/QuestionListV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/CheckboxesWithOtherV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/CheckboxOtherV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/TextInputV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/RadioButtonsWithOtherV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/RadioButtonOtherV3.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/routes/PassPropsRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/ExperienceSupplementGroupsRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/supplement-groups/ArchivedSupplementGroupsListItem.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/supplement-groups/SupplementGroupsListItem.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/supplement-group/SupplementGroupRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/supplement/SupplementRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/supplements/SupplementInformationModalForm.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/experiences/experience/supplement-groups/SupplementGroupTutorialRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/guests/DirectoryRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/guest_search/DirectoryEntry.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/guest_search/RecentSearches.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/guest_search/RecentSearchItem.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/guest_search/SearchForm.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/guest_search/MergeGuestsModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/guest-profile/GuestProfileFormModal.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/shared/src/js/components/inputs/BasicDropdown.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/guests/ProfileRoute.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/booking-history/BookingHistory.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/booking-history/BookingHistoryMenu.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/utils/bookingHistoryUtils.ts'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/routes/logged-in/app/operations/BookingsReportRoute.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash'.
'paths' option is specified, looking for a pattern to match module name 'lodash'.
Module name 'lodash', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash.d.ts' does not exist.
Found 'package.json' at '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/package.json'.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts' exist - use it as a name resolution result.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash' from '/Users/robinanil/work/admin/dashboard/src/js/components/TablesReportFilter.tsx'. ========
Resolution for module 'lodash' was found in cache.
======== Module name 'lodash' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/index.d.ts'. ========
======== Resolving module 'lodash/fp/compose' from '/Users/robinanil/work/admin/dashboard/src/js/components/TablesReportFilter.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/compose'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/compose'.
Module name 'lodash/fp/compose', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/compose'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/compose', target file type 'TypeScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/compose'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.d.ts' does not exist.
Directory '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose' does not exist, skipping all lookups in it.
Loading module 'lodash/fp/compose' from 'node_modules' folder, target file type 'TypeScript'.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/compose.ts' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/compose.tsx' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/compose.d.ts' does not exist.
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/compose'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/compose'.
Module name 'lodash/fp/compose', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/compose'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/compose', target file type 'JavaScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/compose'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose', target file type 'JavaScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.js' exist - use it as a name resolution result.
======== Module name 'lodash/fp/compose' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/compose.js'. ========
======== Resolving module 'lodash/fp/filter' from '/Users/robinanil/work/admin/dashboard/src/js/components/TablesReportFilter.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/filter'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/filter'.
Module name 'lodash/fp/filter', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/filter'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/filter', target file type 'TypeScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/filter'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.d.ts' does not exist.
Directory '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter' does not exist, skipping all lookups in it.
Loading module 'lodash/fp/filter' from 'node_modules' folder, target file type 'TypeScript'.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/filter.ts' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/filter.tsx' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/filter.d.ts' does not exist.
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/filter'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/filter'.
Module name 'lodash/fp/filter', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/filter'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/filter', target file type 'JavaScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/filter'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter', target file type 'JavaScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.js' exist - use it as a name resolution result.
======== Module name 'lodash/fp/filter' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/filter.js'. ========
======== Resolving module 'lodash/fp/map' from '/Users/robinanil/work/admin/dashboard/src/js/components/TablesReportFilter.tsx'. ========
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/map'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/map'.
Module name 'lodash/fp/map', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/map'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/map', target file type 'TypeScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/map'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map', target file type 'TypeScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.ts' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.tsx' does not exist.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.d.ts' does not exist.
Directory '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map' does not exist, skipping all lookups in it.
Loading module 'lodash/fp/map' from 'node_modules' folder, target file type 'TypeScript'.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/map.ts' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/map.tsx' does not exist.
File '/Users/robinanil/work/admin/dashboard/node_modules/lodash/fp/map.d.ts' does not exist.
'baseUrl' option is set to '/Users/robinanil/work/admin/clowncar', using this value to resolve non-relative module name 'lodash/fp/map'.
'paths' option is specified, looking for a pattern to match module name 'lodash/fp/map'.
Module name 'lodash/fp/map', matched pattern '*'.
Trying substitution 'node_modules/@types/*', candidate module location: 'node_modules/@types/lodash/fp/map'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/@types/lodash/fp/map', target file type 'JavaScript'.
Trying substitution 'node_modules/*', candidate module location: 'node_modules/lodash/fp/map'.
Loading module as file / folder, candidate module location '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map', target file type 'JavaScript'.
File '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.js' exist - use it as a name resolution result.
======== Module name 'lodash/fp/map' was successfully resolved to '/Users/robinanil/work/admin/clowncar/node_modules/lodash/fp/map.js'. ========

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

I see the issue now, can you try installing:

npm install @types/lodash.get @types/lodash.isarray @types/lodash.istypedarray @types/lodash.isarguments @types/lodash.keys @types/lodash.isequal @types/lodash.isplainobject 

@mhegazy mhegazy added Bug A bug in TypeScript and removed Needs More Info The issue still hasn't been fully clarified labels May 11, 2017
@mhegazy mhegazy assigned ghost May 11, 2017
@mhegazy mhegazy added this to the TypeScript 2.4 milestone May 11, 2017
@robin-anil
Copy link
Author

@mhegazy Can you explain if that is a stop gap or should we have been doing that (since you labelled this a bug)

@robin-anil
Copy link
Author

still doesn't fix

$ tsc
node_modules/lodash/_equalByTag.js(49,5): error TS7029: Fallthrough case in switch.
node_modules/lodash/_equalByTag.js(81,5): error TS7029: Fallthrough case in switch.

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

can you share the project?

@robin-anil
Copy link
Author

robin-anil commented May 11, 2017

It's a private company project. I will probably have to have you sign an NDA. Let me check up the chain, this may take a while. If you have other ideas of diagnosing this, it may go faster

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

@Andy-MS the issue here seems to be that we are resolving imports to .js files under node_modules if allowjs is enabled even without maxNodeModuleJsDepth being set. the result is we are including .js files from external dependencies as sources, and we are compiling them, reporting errors on them, etc..

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

i would say if --allowJs is set, then load .js unless they are external.

@robin-anil
Copy link
Author

Yeah respect the default exclude[] section

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

@r-tock, i am afraid this has nothing to do with exclude

@ghost
Copy link

ghost commented May 11, 2017

I think the real problem is the path mapping "*": ["node_modules/@types/*", "node_modules/*"]. This would cause us to not recognize those as being external libraries since it's going through path mapping and not regular module resolution.
You should be able to just remove that path mapping and rely on "moduleResolution": "node" instead.

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

"*": ["node_modules/@types/*", "node_modules/*"] is used to force all imports to go to ./node_modules and not one higher up.

@ghost
Copy link

ghost commented May 11, 2017

We don't set isExternalLibraryImport on a ResolvedModule if it doesn't come from node's global module resolution, though. (See nodeModuleNameResolverWorker in moduleNameResolver.ts.) Should we make a special case if the path mapping happens to contain node_modules as a component of the path?

@mhegazy
Copy link
Contributor

mhegazy commented May 11, 2017

i do not know :)

@robin-anil
Copy link
Author

I cannot remove that because it is what makes our codebase work with typescript-- see #15596

@ghost
Copy link

ghost commented May 12, 2017

To summarize:

  • You want parts of your project to have imports mapped to a node_modules that is not normally accessible to them (due to not being in an ancestor directory).
  • So you use path mapping to the particular node_modules that you want.
  • Unfortunately, since it's a path mapping, we don't recognize it as a "real" node_modules import.

I'm wondering why we don't just treat all modules with non-relative names as external imports.

@robin-anil
Copy link
Author

Why not just explicit option in tsconfig.json to indicate external modules instead of the "smart guessing" which does not cover all unseen scenarios.

"paths": [
  "shared": ["../shared/src/js/*"],
],
"externalPaths": [
  "*": ["node_modules/types/*", "node_modules/*"]
]  

@ghost
Copy link

ghost commented Sep 14, 2017

Hi, does #16364 fix your issue?

@robin-anil
Copy link
Author

No still does not

@ghost
Copy link

ghost commented Oct 2, 2017

Could you share a minimal example project that reproduces your error?

@ghost
Copy link

ghost commented Oct 30, 2017

@r-tock Bump

@mhegazy
Copy link
Contributor

mhegazy commented Oct 30, 2017

closing for now. please reopen if you have a repro project.

@mhegazy mhegazy closed this as completed Oct 30, 2017
@mhegazy mhegazy added the Fixed A PR has been merged for this issue label Jan 11, 2018
@microsoft microsoft locked and limited conversation to collaborators Jul 3, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Bug A bug in TypeScript Fixed A PR has been merged for this issue
Projects
None yet
Development

No branches or pull requests

3 participants