Skip to content

Commit eee5675

Browse files
committed
changed directory of app.ts, update tsconfig to match
1 parent 804e984 commit eee5675

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/docker_ci.yaml

Whitespace-only changes.
File renamed without changes.

tsconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
/* Modules */
2929
"module": "commonjs", /* Specify what module code is generated. */
30-
// "rootDir": "./", /* Specify the root folder within your source files. */
30+
"rootDir": "./src", /* Specify the root folder within your source files. */
3131
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
3232
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
3333
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
34-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
34+
"rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
3535
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
3636
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
3737
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
@@ -109,5 +109,8 @@
109109
/* Completeness */
110110
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
111111
"skipLibCheck": true /* Skip type checking all .d.ts files. */
112-
}
112+
},
113+
"include": [
114+
"src/**/*"
115+
]
113116
}

0 commit comments

Comments
 (0)