You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Share scope name used for all consumed modules (defaults to 'default').
26
26
*/
27
27
shareScope?: string|string[];
28
+
/**
29
+
* Experimental features options
30
+
*/
31
+
experiments?: {
32
+
/**
33
+
* Enable reconstructed lookup for node_modules paths
34
+
*/
35
+
nodeModulesReconstructedLookup?: boolean;
36
+
};
28
37
}
29
38
/**
30
39
* Modules that should be consumed from share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.
* Modules that should be shared in the share scope. When provided, property names are used to match requested modules in this compilation.
26
26
*/
27
27
shared: Shared;
28
+
/**
29
+
* Experimental features options
30
+
*/
31
+
experiments?: {
32
+
/**
33
+
* Enable reconstructed lookup for node_modules paths
34
+
*/
35
+
nodeModulesReconstructedLookup?: boolean;
36
+
};
28
37
}
29
38
/**
30
39
* Modules that should be shared in the share scope. Property names are used to match requested modules in this compilation. Relative requests are resolved, module requests are matched unresolved, absolute paths will match resolved requests. A trailing slash will match all requests with this prefix. In this case shareKey must also have a trailing slash.
0 commit comments