Skip to content

Commit

Permalink
HARMONY-1996: Changes to tsconfig.json files to fix tsc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
indiejames committed Jan 23, 2025
1 parent 6ad13b8 commit 4fe4a84
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 5 deletions.
5 changes: 4 additions & 1 deletion packages/util/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"typeRoots": [
"node_modules/@types"
]
},
"include": ["."],
"exclude": ["./node_modules", "coverage"]
Expand Down
5 changes: 4 additions & 1 deletion packages/util/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"typeRoots": [
"node_modules/@types"
],
},
"include": ["."],
"exclude": ["./node_modules", "coverage"]
Expand Down
3 changes: 3 additions & 0 deletions services/work-failer/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built",
"typeRoots": [
"node_modules/@types"
],
},
"include": [
"./app",
Expand Down
3 changes: 3 additions & 0 deletions services/work-reaper/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built",
"typeRoots": [
"node_modules/@types"
],
},
"include": [
"./app",
Expand Down
5 changes: 4 additions & 1 deletion services/work-scheduler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
"noImplicitAny": false,
"resolveJsonModule": true,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"typeRoots": [
"node_modules/@types"
]
},
"include": ["./app", "./test"]
}
5 changes: 4 additions & 1 deletion services/work-updater/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"typeRoots": [
"node_modules/@types"
],
},
"include": ["./app", "./test"]
}
5 changes: 4 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"allowJs": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "built"
"outDir": "built",
"typeRoots": [
"node_modules/@types"
]
}
}

0 comments on commit 4fe4a84

Please sign in to comment.