diff --git a/hrm-domain/hrm-service/tsconfig.json b/hrm-domain/hrm-service/tsconfig.json index 69ff7d2ae..fff5e75fd 100644 --- a/hrm-domain/hrm-service/tsconfig.json +++ b/hrm-domain/hrm-service/tsconfig.json @@ -9,6 +9,7 @@ "outDir": "./dist", "lib": ["es2020"], "strict": false, + "rootDir": "." }, "include": ["src/**/*.js", "src/**/*.json", "src/**/*.ts"] diff --git a/hrm-domain/lambdas/files-urls/tsconfig.json b/hrm-domain/lambdas/files-urls/tsconfig.json index 5f591cb89..d5d674fee 100644 --- a/hrm-domain/lambdas/files-urls/tsconfig.json +++ b/hrm-domain/lambdas/files-urls/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../tsconfig.json", "include": ["*.ts"], "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "rootDir": "." } } diff --git a/hrm-domain/scheduled-tasks/tsconfig.json b/hrm-domain/scheduled-tasks/tsconfig.json index 8cae14ca6..8fadeed40 100644 --- a/hrm-domain/scheduled-tasks/tsconfig.json +++ b/hrm-domain/scheduled-tasks/tsconfig.json @@ -5,6 +5,7 @@ "target": "ES2020", "moduleResolution": "node16", "sourceMap": true, - "lib": ["es2020"] + "lib": ["es2020"], + "rootDir": "." }, } diff --git a/lambdas/packages/alb-handler/tsconfig.json b/lambdas/packages/alb-handler/tsconfig.json index 16b09a4ed..aeac8e0dc 100644 --- a/lambdas/packages/alb-handler/tsconfig.json +++ b/lambdas/packages/alb-handler/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../../tsconfig.json", "include": ["*.ts"], "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "rootDir": "." } } diff --git a/lambdas/packages/hrm-authentication/tsconfig.json b/lambdas/packages/hrm-authentication/tsconfig.json index 16b09a4ed..40e66970c 100644 --- a/lambdas/packages/hrm-authentication/tsconfig.json +++ b/lambdas/packages/hrm-authentication/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../../tsconfig.json", "include": ["*.ts"], "compilerOptions": { - "outDir": "./dist" - } + "outDir": "./dist", + "rootDir": "." + }, } diff --git a/packages/http/tsconfig.json b/packages/http/tsconfig.json index a187c9269..c77d8645b 100644 --- a/packages/http/tsconfig.json +++ b/packages/http/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../tsconfig.packages-base.json", "include": ["*.ts"], "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "rootDir": "." } } diff --git a/packages/service-discovery/tsconfig.json b/packages/service-discovery/tsconfig.json index 303a856db..315c26f6b 100644 --- a/packages/service-discovery/tsconfig.json +++ b/packages/service-discovery/tsconfig.json @@ -3,5 +3,6 @@ "include": ["*.ts"], "compilerOptions": { "outDir": "./dist", + "rootDir": "." }, } diff --git a/packages/types/tsconfig.json b/packages/types/tsconfig.json index 303a856db..315c26f6b 100644 --- a/packages/types/tsconfig.json +++ b/packages/types/tsconfig.json @@ -3,5 +3,6 @@ "include": ["*.ts"], "compilerOptions": { "outDir": "./dist", + "rootDir": "." }, } diff --git a/resources-domain/resources-service/tsconfig.json b/resources-domain/resources-service/tsconfig.json index 716e37a8a..5a7ce89c9 100644 --- a/resources-domain/resources-service/tsconfig.json +++ b/resources-domain/resources-service/tsconfig.json @@ -1,11 +1,11 @@ { "extends": "../tsconfig.json", "compilerOptions": { - "lib": ["ES2020"], "moduleResolution": "node", "declaration": true, - "outDir": "./dist" + "outDir": "./dist", + "rootDir": "." }, "include": ["src/**/*.ts"], "ts-node": {