Skip to content

Commit

Permalink
Chore: Update Typescripts ignore and include paths
Browse files Browse the repository at this point in the history
Update the paths with the change from server/out to client/server for
all our typescript tools. Also update paths to ignore the .vsix
packaging artifacts.
  • Loading branch information
deribaucourt committed Oct 30, 2023
1 parent 4ed8c8b commit 92c73c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ module.exports = {
ignorePatterns: [
'out',
'poky',
'.vscode-test',
'client/server',
'__mocks__/vscode.ts'
],
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ client/out/
out/
*.js.map
**/tsconfig.tsbuildinfo
client/*.vsix

.eslintcache
coverage/
Expand Down
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ module.exports = {
"ts"
],
modulePathIgnorePatterns: [
"<rootDir>/server/out",
"<rootDir>/client/server",
"<rootDir>/integration-tests",
"<rootDir>/client/out"
],
transform: {
Expand All @@ -26,6 +27,7 @@ module.exports = {
collectCoverageFrom: [
"**/*.ts",
"!**/__test__/**/*.ts",
"!integration-tests",
"!testing/*"
],
};
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"exclude": [
"node_modules",
"poky",
".vscode-test"
],
"references": [
{ "path": "./client" },
Expand Down

0 comments on commit 92c73c2

Please sign in to comment.