58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
window.exclude = [];
|
|
window.watch = false;
|
|
window.environment = 'dev';
|
|
window.useXstateInspect = false;
|
|
|
|
window.appConfig = {
|
|
showDebugger: true,
|
|
showExperimentalFeatures: true,
|
|
projectGraphs: [
|
|
{
|
|
id: 'nx',
|
|
label: 'Nx',
|
|
url: 'assets/graphs/nx.json',
|
|
},
|
|
{
|
|
id: 'ocean',
|
|
label: 'Ocean',
|
|
url: 'assets/graphs/ocean.json',
|
|
},
|
|
{
|
|
id: 'nx-examples',
|
|
label: 'Nx Examples',
|
|
url: 'assets/graphs/nx-examples.json',
|
|
},
|
|
{
|
|
id: 'sub-apps',
|
|
label: 'Sub Apps',
|
|
url: 'assets/graphs/sub-apps.json',
|
|
},
|
|
{
|
|
id: 'storybook',
|
|
label: 'Storybook',
|
|
url: 'assets/graphs/storybook.json',
|
|
},
|
|
{
|
|
id: 'focus-testing',
|
|
label: 'Focus',
|
|
url: 'assets/graphs/focus-testing.json',
|
|
},
|
|
{
|
|
id: 'affected',
|
|
label: 'Affected',
|
|
url: 'assets/graphs/affected.json',
|
|
},
|
|
{
|
|
id: 'collapsing-edges-testing',
|
|
label: 'Collapsing Edges',
|
|
url: 'assets/graphs/collapsing-edges-testing.json',
|
|
},
|
|
{
|
|
id: 'nested-workspace-layout',
|
|
label: 'Nested Workspace Layout',
|
|
url: 'assets/graphs/nested-workspace-layout.json',
|
|
},
|
|
],
|
|
defaultProjectGraph: 'nx',
|
|
};
|