Skip to content

Commit

Permalink
[eyeglass] Default value for disableStrictDependencyCheck.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Apr 11, 2019
1 parent 11686f8 commit 649d020
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/eyeglass/src/util/Options.ts
Expand Up @@ -357,6 +357,8 @@ export function resolveConfig(options: Partial<EyeglassSpecificOptions>): Eyegla
defaultValue(options, "assertEyeglassCompatibility", () => DEFAULT_EYEGLASS_COMPAT);
// Use a simple cache that just lasts for this one file if no buildCache is provided.
defaultValue(options, "buildCache", () => new Map());
// Strict dependency checks are enabled by default.
defaultValue(options, "disableStrictDependencyCheck", () => false);

options.fsSandbox = normalizeFsSandbox(options.fsSandbox, options.root!);
return options as EyeglassConfig;
Expand Down

0 comments on commit 649d020

Please sign in to comment.