We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbddb2e commit 136da6aCopy full SHA for 136da6a
3 files changed
package.json
@@ -36,7 +36,8 @@
36
"files": [
37
"build/src",
38
"LICENSE",
39
- "!*.tsbuildinfo"
+ "!*.tsbuildinfo",
40
+ "!*.js.map"
41
],
42
"repository": "ChromeDevTools/chrome-devtools-mcp",
43
"author": "Google LLC",
tests/index.test.ts
@@ -169,6 +169,7 @@ async function getToolsWithFilteredCategories(
169
const definedNames = [];
170
for (const file of files) {
171
if (
172
+ !file.endsWith('.js') ||
173
file === 'ToolDefinition.js' ||
174
file === 'tools.js' ||
175
file === 'slim'
tsconfig.json
@@ -19,6 +19,7 @@
19
"noImplicitOverride": true,
20
"noFallthroughCasesInSwitch": true,
21
"incremental": true,
22
+ "sourceMap": true,
23
"allowJs": true,
24
"useUnknownInCatchVariables": false
25
},
0 commit comments