From b5eafd0a9692e494425b43d947900fbaae2781fd Mon Sep 17 00:00:00 2001 From: Fionn Date: Fri, 30 Sep 2022 08:54:27 +0200 Subject: [PATCH] moved app into app subdirectory --- .vscode/settings.json | 5 +++++ .eslintrc.json => app/.eslintrc.json | 0 package-lock.json => app/package-lock.json | 0 package.json => app/package.json | 0 {src => app/src}/app.ts | 0 tsconfig.json => app/tsconfig.json | 0 {views => app/views}/error.ejs | 0 {views => app/views}/layout.ejs | 0 8 files changed, 5 insertions(+) create mode 100644 .vscode/settings.json rename .eslintrc.json => app/.eslintrc.json (100%) rename package-lock.json => app/package-lock.json (100%) rename package.json => app/package.json (100%) rename {src => app/src}/app.ts (100%) rename tsconfig.json => app/tsconfig.json (100%) rename {views => app/views}/error.ejs (100%) rename {views => app/views}/layout.ejs (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1dacc2a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "eslint.workingDirectories": [ + "app" + ] +} \ No newline at end of file diff --git a/.eslintrc.json b/app/.eslintrc.json similarity index 100% rename from .eslintrc.json rename to app/.eslintrc.json diff --git a/package-lock.json b/app/package-lock.json similarity index 100% rename from package-lock.json rename to app/package-lock.json diff --git a/package.json b/app/package.json similarity index 100% rename from package.json rename to app/package.json diff --git a/src/app.ts b/app/src/app.ts similarity index 100% rename from src/app.ts rename to app/src/app.ts diff --git a/tsconfig.json b/app/tsconfig.json similarity index 100% rename from tsconfig.json rename to app/tsconfig.json diff --git a/views/error.ejs b/app/views/error.ejs similarity index 100% rename from views/error.ejs rename to app/views/error.ejs diff --git a/views/layout.ejs b/app/views/layout.ejs similarity index 100% rename from views/layout.ejs rename to app/views/layout.ejs