From 92e5978cf1cf54ff587ee93dcbcb5f5dc05ea55c Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 18 Feb 2019 16:44:35 +0000 Subject: Deleted main console program, and moved server to main --- Main/wwwroot/css/main.css | 0 Main/wwwroot/index.html | 18 ++++++++++++++++++ Main/wwwroot/scripts/main.ts | 8 ++++++++ Main/wwwroot/tsconfig.json | 8 ++++++++ 4 files changed, 34 insertions(+) create mode 100644 Main/wwwroot/css/main.css create mode 100644 Main/wwwroot/index.html create mode 100644 Main/wwwroot/scripts/main.ts create mode 100644 Main/wwwroot/tsconfig.json (limited to 'Main/wwwroot') diff --git a/Main/wwwroot/css/main.css b/Main/wwwroot/css/main.css new file mode 100644 index 0000000..e69de29 diff --git a/Main/wwwroot/index.html b/Main/wwwroot/index.html new file mode 100644 index 0000000..cd392d4 --- /dev/null +++ b/Main/wwwroot/index.html @@ -0,0 +1,18 @@ + + + + + + + Page Title + + + + + + +
+
+ + + \ No newline at end of file diff --git a/Main/wwwroot/scripts/main.ts b/Main/wwwroot/scripts/main.ts new file mode 100644 index 0000000..77a80d3 --- /dev/null +++ b/Main/wwwroot/scripts/main.ts @@ -0,0 +1,8 @@ +var root = document.getElementsByClassName('app'); + +class Article { + Title: HTMLElement; + Description: string; + ArticleLink: string; + Image: HTMLElement; +} \ No newline at end of file diff --git a/Main/wwwroot/tsconfig.json b/Main/wwwroot/tsconfig.json new file mode 100644 index 0000000..89d01c4 --- /dev/null +++ b/Main/wwwroot/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "esnext", + "sourceMap": true, + "outDir": "js/" + } +} \ No newline at end of file -- cgit v1.2.3-13-gbd6f