Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ dist
scripts
src/vscode-dts
ext/agent-skills
playwright-report
test-results
3 changes: 3 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ CHANGELOG.md
.snyk
babel.config.json
pnpm-lock.yaml
.pnpm-store
scripts/**
playwright-report
test-results

# Ignore all files in ext except the skills folder
ext/**
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,7 @@
"@mongosh/service-provider-node-driver": "^5.0.2",
"@mongodb-js/oidc-plugin": "^2.0.8",
"@mongodb-js/devtools-proxy-support": "^0.7.5",
"brace-expansion": "^5.0.5",
"tar": "^7.5.11",
"serialize-javascript": "^7.0.4",
"underscore": "^1.13.8",
Expand Down
50 changes: 13 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,14 @@
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": ["node_modules", "dist", "out", ".vscode-test", "scripts", "ext"]
"exclude": [
"node_modules",
"dist",
"out",
".vscode-test",
"scripts",
"ext",
"playwright-report",
"test-results"
]
}
Loading