Skip to content

Commit

Permalink
fix: tidy up references in tsconfig files
Browse files Browse the repository at this point in the history
  • Loading branch information
jkerr321 committed Feb 10, 2023
1 parent 443b93f commit 159b602
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
3 changes: 3 additions & 0 deletions plugins/circleci-deploy/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
{
"path": "../../lib/types"
},
{
"path": "../../lib/options"
},
{
"path": "../circleci"
}
Expand Down
6 changes: 6 additions & 0 deletions plugins/cypress/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
"references": [
{
"path": "../../lib/types"
},
{
"path": "../../lib/logger"
},
{
"path": "../../lib/state"
}
],
"include": ["src/**/*"]
Expand Down
7 changes: 4 additions & 3 deletions plugins/lint-staged/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
},
{
"path": "../../lib/logger"
},
{
"path": "../../lib/error"
}
],
"include": [
"src/**/*"
]
"include": ["src/**/*"]
}
3 changes: 0 additions & 3 deletions plugins/mocha/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"extends": "../../tsconfig.settings.json",
"references": [
{
"path": "../../lib/error"
},
{
"path": "../../lib/logger"
},
Expand Down
5 changes: 4 additions & 1 deletion plugins/node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"path": "../../lib/logger"
},
{
"path": "../../lib/options"
"path": "../../lib/vault"
},
{
"path": "../../lib/state"
}
],
"include": ["src/**/*"]
Expand Down
6 changes: 6 additions & 0 deletions plugins/pa11y/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
"references": [
{
"path": "../../lib/types"
},
{
"path": "../../lib/logger"
},
{
"path": "../../lib/error"
}
],
"include": ["src/**/*"]
Expand Down
3 changes: 3 additions & 0 deletions plugins/secret-squirrel/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"references": [
{
"path": "../../lib/types"
},
{
"path": "../../lib/logger"
}
],
"include": ["src/**/*"]
Expand Down
3 changes: 0 additions & 3 deletions plugins/webpack/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
"rootDir": "src"
},
"references": [
{
"path": "../../lib/error"
},
{
"path": "../../lib/logger"
},
Expand Down

0 comments on commit 159b602

Please sign in to comment.