Skip to content

Commit 8ab0de8

Browse files
committed
fix: update ESLint config to resolve workspace module paths
- Add services/*/tsconfig.json and apps/*/tsconfig.json to import resolver - Fixes ESLint unable to resolve @scribemed/* workspace packages - Resolves CI lint failures
1 parent 53f3613 commit 8ab0de8

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.eslintrc.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ module.exports = {
2222
settings: {
2323
'import/resolver': {
2424
typescript: {
25-
project: ['./tsconfig.json', './packages/*/tsconfig.json'],
25+
project: [
26+
'./tsconfig.json',
27+
'./packages/*/tsconfig.json',
28+
'./services/*/tsconfig.json',
29+
'./apps/*/tsconfig.json',
30+
],
2631
},
2732
},
2833
},

0 commit comments

Comments
 (0)