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