Added back in Bazel tests for gui2-fw-lib and gui2-topo-lib

Also used a named path in typescript for gui2-fw-lib

Change-Id: I7233565e53b9b86e1766228ecc96b21ea6f7499d
diff --git a/web/gui2/tsconfig.json b/web/gui2/tsconfig.json
new file mode 100644
index 0000000..4580e39
--- /dev/null
+++ b/web/gui2/tsconfig.json
@@ -0,0 +1,23 @@
+{
+  "compilerOptions": {
+    // Allow uses of these JS APIs
+    "lib": [
+      "dom",
+      "es5",
+      "es2015.collection",
+      "es2015.iterable",
+      "es2015.promise",
+      "es2017",
+      "es2017.object"
+    ],
+    // Don't scan the node_modules/@types folder for ambient types.
+    // This would force us to have all the types in the dependencies of
+    // each library.
+    // Instead we'll be explicit about declaring ambient type dependencies
+    // using the ///<reference types=""/> syntax.
+    "types": [],
+    "paths": {
+      "org_onosproject_onos/web/gui2-fw-lib": ["web/gui2-fw-lib"]
+    }
+  }
+}