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
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"files": [
"build/src",
"LICENSE",
"!*.tsbuildinfo"
"!*.tsbuildinfo",
"!*.js.map"
],
"repository": "ChromeDevTools/chrome-devtools-mcp",
"author": "Google LLC",
Expand Down
1 change: 1 addition & 0 deletions tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ async function getToolsWithFilteredCategories(
const definedNames = [];
for (const file of files) {
if (
!file.endsWith('.js') ||
file === 'ToolDefinition.js' ||
file === 'tools.js' ||
file === 'slim'
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"incremental": true,
"sourceMap": true,
"allowJs": true,
"useUnknownInCatchVariables": false
},
Expand Down
Loading