aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/tsconfig.json')
-rw-r--r--packages/main/tsconfig.json10
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/main/tsconfig.json b/packages/main/tsconfig.json
index 1401445..00a1985 100644
--- a/packages/main/tsconfig.json
+++ b/packages/main/tsconfig.json
@@ -1,5 +1,5 @@
1{ 1{
2 "extends": "../../tsconfig.json", 2 "extends": "../../config/tsconfig.base.json",
3 "compilerOptions": { 3 "compilerOptions": {
4 "noEmit": true, 4 "noEmit": true,
5 "types": [ 5 "types": [
@@ -9,14 +9,16 @@
9 }, 9 },
10 "references": [ 10 "references": [
11 { 11 {
12 "path": "../service-shared" 12 "path": "../service-shared/tsconfig.build.json"
13 }, 13 },
14 { 14 {
15 "path": "../shared" 15 "path": "../shared/tsconfig.build.json"
16 } 16 }
17 ], 17 ],
18 "include": [ 18 "include": [
19 "src/**/*.ts", 19 "src/**/*.ts",
20 "types/**/*.d.ts" 20 "types/**/*.d.ts",
21 "esbuild.config.js",
22 "jest.config.js"
21 ] 23 ]
22} 24}