Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f441fc015e629f5e8987c3163af6a85af6293484
35 changes: 21 additions & 14 deletions imxweb/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,20 @@
"version": "0.2.0",
"configurations": [
{
"name": "ARC CertAccess",
"type": "firefox",
"request": "launch",
"type": "pwa-chrome",
"reAttach": true,
"name": "QER App Portal (Firefox)",
"url": "http://localhost:4200/",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack:///./*": "${webRoot}/*",
"webpack:///src/*": "${webRoot}/*",
"webpack:///*": "*",
"webpack:///./~/*": "${webRoot}/node_modules/*",
"webpack:///ng://qbm/lib/*": "${workspaceFolder}/projects/att/src/lib/*",
"webpack:///ng://qer/lib/*": "${workspaceFolder}/projects/o3t/src/lib/*",
"webpack:///ng://tsb/lib/*": "${workspaceFolder}/projects/rps/src/lib/*",
"webpack:///ng://att/lib/*": "${workspaceFolder}/projects/tsb/src/lib/*"
}
"webRoot": "${workspaceFolder}"
},
{
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "QER App Portal (Firefox - SSL)",
"url": "https://localhost:4200/",
"webRoot": "${workspaceFolder}"
},
{
"name": "QER Ops Web (Chrome)",
Expand All @@ -35,6 +34,13 @@
"url": "http://localhost:4200/",
"webRoot": "${workspaceFolder}",
},
{
"name": "QER App Portal (Chrome - SSL)",
"request": "launch",
"type": "pwa-chrome",
"url": "https://localhost:4200/",
"webRoot": "${workspaceFolder}",
},
{
"name": "QER App Portal (Chrome, API Server)",
"type": "chrome",
Expand Down Expand Up @@ -85,6 +91,7 @@
"webpack:///ng://qbm/lib/*": "${workspaceFolder}/projects/qbm/src/lib/*",
"webpack:///ng://qer/lib/*": "${workspaceFolder}/projects/qer/src/lib/*"
}
}
},

]
}
3 changes: 2 additions & 1 deletion imxweb/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"explorer.compactFolders": false,
"editor.tabSize": 2
"editor.tabSize": 2,
"git.ignoreLimitWarning": true
}
2 changes: 1 addition & 1 deletion imxweb/Build.proj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="BuildWorkspace" ToolsVersion="15.0">
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="BuildWorkspace" ToolsVersion="15.0">
<PropertyGroup>
<ComponentDir>imxweb</ComponentDir>
</PropertyGroup>
Expand Down
Loading