From eee5675ce991a9a34b3fb0692c1d1c10e424cd95 Mon Sep 17 00:00:00 2001 From: Nga <92612527+NgaNaNa@users.noreply.github.com> Date: Thu, 5 Jun 2025 22:34:09 +0930 Subject: [PATCH] changed directory of app.ts, update tsconfig to match --- .github/workflows/docker_ci.yaml | 0 app.ts => src/app.ts | 0 tsconfig.json | 9 ++++++--- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/docker_ci.yaml rename app.ts => src/app.ts (100%) diff --git a/.github/workflows/docker_ci.yaml b/.github/workflows/docker_ci.yaml new file mode 100644 index 0000000..e69de29 diff --git a/app.ts b/src/app.ts similarity index 100% rename from app.ts rename to src/app.ts diff --git a/tsconfig.json b/tsconfig.json index b69da1f..ee39b5b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,11 +27,11 @@ /* Modules */ "module": "commonjs", /* Specify what module code is generated. */ - // "rootDir": "./", /* Specify the root folder within your source files. */ + "rootDir": "./src", /* Specify the root folder within your source files. */ // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ - // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ + "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ // "types": [], /* Specify type package names to be included without being referenced in a source file. */ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ @@ -109,5 +109,8 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */ - } + }, + "include": [ + "src/**/*" + ] }