initial commit & day 1 complete

Change-Id: Ic39e13e7e7fc0043ee1630df7deef7cc59d8b6b1
diff --git a/node_modules/@tsconfig/node10/LICENSE b/node_modules/@tsconfig/node10/LICENSE
new file mode 100644
index 0000000..48ea661
--- /dev/null
+++ b/node_modules/@tsconfig/node10/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) Microsoft Corporation.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE
diff --git a/node_modules/@tsconfig/node10/README.md b/node_modules/@tsconfig/node10/README.md
new file mode 100644
index 0000000..7a32f81
--- /dev/null
+++ b/node_modules/@tsconfig/node10/README.md
@@ -0,0 +1,40 @@
+### A base TSConfig for working with Node 10.
+
+Add the package to your `"devDependencies"`:
+
+```sh
+npm install --save-dev @tsconfig/node10
+yarn add --dev @tsconfig/node10
+```
+
+Add to your `tsconfig.json`:
+
+```json
+"extends": "@tsconfig/node10/tsconfig.json"
+```
+
+---
+
+The `tsconfig.json`: 
+
+```jsonc
+{
+  "$schema": "https://json.schemastore.org/tsconfig",
+  "display": "Node 10",
+
+  "compilerOptions": {
+    "lib": ["es2018"],
+    "module": "commonjs",
+    "target": "es2018",
+
+    "strict": true,
+    "esModuleInterop": true,
+    "skipLibCheck": true,
+    "forceConsistentCasingInFileNames": true,
+    "moduleResolution": "node"
+  }
+}
+
+```
+
+You can find the [code here](https://github.com/tsconfig/bases/blob/master/bases/node10.json).
diff --git a/node_modules/@tsconfig/node10/package.json b/node_modules/@tsconfig/node10/package.json
new file mode 100644
index 0000000..f2223fc
--- /dev/null
+++ b/node_modules/@tsconfig/node10/package.json
@@ -0,0 +1 @@
+{"name":"@tsconfig/node10","repository":{"type":"git","url":"https://github.com/tsconfig/bases.git","directory":"bases"},"license":"MIT","description":"A base TSConfig for working with Node 10.","keywords":["tsconfig","node10"],"version":"1.0.9"}
\ No newline at end of file
diff --git a/node_modules/@tsconfig/node10/tsconfig.json b/node_modules/@tsconfig/node10/tsconfig.json
new file mode 100644
index 0000000..9cb33be
--- /dev/null
+++ b/node_modules/@tsconfig/node10/tsconfig.json
@@ -0,0 +1,16 @@
+{
+  "$schema": "https://json.schemastore.org/tsconfig",
+  "display": "Node 10",
+
+  "compilerOptions": {
+    "lib": ["es2018"],
+    "module": "commonjs",
+    "target": "es2018",
+
+    "strict": true,
+    "esModuleInterop": true,
+    "skipLibCheck": true,
+    "forceConsistentCasingInFileNames": true,
+    "moduleResolution": "node"
+  }
+}