Added webapp Dashboard + logic to interact with server.
[src/xds/xds-agent.git] / webapp / tsconfig.json
diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json
new file mode 100644 (file)
index 0000000..9bad681
--- /dev/null
@@ -0,0 +1,18 @@
+{
+  "compilerOptions": {
+    "outDir": "dist/app",
+    "target": "es5",
+    "module": "commonjs",
+    "moduleResolution": "node",
+    "sourceMap": true,
+    "emitDecoratorMetadata": true,
+    "experimentalDecorators": true,
+    "removeComments": false,
+    "noImplicitAny": false,
+    "noStrictGenericChecks": true   // better to switch to RxJS 5.4.2 ; workaround https://stackoverflow.com/questions/44810195/how-do-i-get-around-this-subject-incorrectly-extends-observable-error-in-types
+  },
+  "exclude": [
+    "gulpfile.ts",
+    "node_modules"
+  ]
+}