aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-26 11:20:00 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-05-27 21:07:44 +0200
commit4ed5115c2b06f204fd0aa3351d8acaee6884444f (patch)
tree121501617c3f3948ecf5911bfb13085dc994469d /packages/service-shared/tsconfig.json
parenttest(shared): ServiceBase tests (diff)
downloadsophie-4ed5115c2b06f204fd0aa3351d8acaee6884444f.tar.gz
sophie-4ed5115c2b06f204fd0aa3351d8acaee6884444f.tar.zst
sophie-4ed5115c2b06f204fd0aa3351d8acaee6884444f.zip
build: fix test rootDir configuration
Each package should load the tests from its src directory only. Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/service-shared/tsconfig.json')
-rw-r--r--packages/service-shared/tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/service-shared/tsconfig.json b/packages/service-shared/tsconfig.json
index daad7c4..e0f7223 100644
--- a/packages/service-shared/tsconfig.json
+++ b/packages/service-shared/tsconfig.json
@@ -5,7 +5,7 @@
5 "emitDeclarationOnly": false, 5 "emitDeclarationOnly": false,
6 "declarationDir": null, 6 "declarationDir": null,
7 "noEmit": true, 7 "noEmit": true,
8 "rootDir": null 8 "rootDir": "../.."
9 }, 9 },
10 "include": ["src/**/*.ts", ".eslintrc.cjs", "esbuild.config.js"] 10 "include": ["src/**/*.ts", ".eslintrc.cjs", "esbuild.config.js"]
11} 11}