From 8ba5a4b25bba9a365c88a075ea9af6e58b83c376 Mon Sep 17 00:00:00 2001 From: jwhull Date: Fri, 21 Jun 2024 17:10:06 -0700 Subject: [PATCH] added files --- .github/CODEOWNERS | 4 --- .github/ISSUE_TEMPLATE.md | 34 ---------------------- .github/PULL_REQUEST_TEMPLATE.md | 1 - CONTRIBUTING.md | 7 ----- exercise_files/Ch01/01_02e/src/demo fix.ts | 5 ++++ exercise_files/Ch01/01_02e/tsconfig.json | 4 ++- exercise_files/Ch01/01_03b/tsconfig.json | 4 ++- 7 files changed, 11 insertions(+), 48 deletions(-) delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/ISSUE_TEMPLATE.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 CONTRIBUTING.md create mode 100644 exercise_files/Ch01/01_02e/src/demo fix.ts diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 21cb7cf..0000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,4 +0,0 @@ -# Codeowners for these exercise files: -# * (asterisk) deotes "all files and folders" -# Example: * @producer @instructor -* @jchadwick \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 20ff87d..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,34 +0,0 @@ - - -## Issue Overview - - -## Describe your environment - - -## Steps to Reproduce - -1. -2. -3. -4. - -## Expected Behavior - - -## Current Behavior - - -## Possible Solution - - -## Screenshots / Video - - -## Related Issues - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 6ae59ec..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 164cbd5..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,7 +0,0 @@ - -Contribution Agreement -====================== - -This repository does not accept pull requests (PRs). All pull requests will be closed. - -However, if any contributions (through pull requests, issues, feedback or otherwise) are provided, as a contributor, you represent that the code you submit is your original work or that of your employer (in which case you represent you have the right to bind your employer). By submitting code (or otherwise providing feedback), you (and, if applicable, your employer) are licensing the submitted code (and/or feedback) to LinkedIn and the open source community subject to the BSD 2-Clause license. diff --git a/exercise_files/Ch01/01_02e/src/demo fix.ts b/exercise_files/Ch01/01_02e/src/demo fix.ts new file mode 100644 index 0000000..fadbdba --- /dev/null +++ b/exercise_files/Ch01/01_02e/src/demo fix.ts @@ -0,0 +1,5 @@ +class userContact { + id: number; + name: string; + birthDate: Date; +} \ No newline at end of file diff --git a/exercise_files/Ch01/01_02e/tsconfig.json b/exercise_files/Ch01/01_02e/tsconfig.json index 957cdae..067a540 100644 --- a/exercise_files/Ch01/01_02e/tsconfig.json +++ b/exercise_files/Ch01/01_02e/tsconfig.json @@ -4,5 +4,7 @@ "target": "esnext", "noEmit": true }, - "include": ["src/**/*"] + "include": [ + "src/**/*" + ] } \ No newline at end of file diff --git a/exercise_files/Ch01/01_03b/tsconfig.json b/exercise_files/Ch01/01_03b/tsconfig.json index 957cdae..067a540 100644 --- a/exercise_files/Ch01/01_03b/tsconfig.json +++ b/exercise_files/Ch01/01_03b/tsconfig.json @@ -4,5 +4,7 @@ "target": "esnext", "noEmit": true }, - "include": ["src/**/*"] + "include": [ + "src/**/*" + ] } \ No newline at end of file