Skip to content

Commit 8a76355

Browse files
committed
fix: include dev
1 parent 5348a3a commit 8a76355

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/code_health.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
node-version-file: package.json
7575
cache: "npm"
7676
- name: Install dependencies & build
77-
run: npm ci --omit=dev --include=@modelcontextprotocol/inspector
77+
run: npm ci
7878
- run: npm run inspect -- --cli --method tools/list --connectionString "mongodb://localhost"
7979

8080
coverage:

tsconfig.build.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"strict": true,
99
"strictNullChecks": true,
1010
"esModuleInterop": true,
11-
"types": ["node", "jest"],
1211
"sourceMap": true,
1312
"skipLibCheck": true,
1413
"resolveJsonModule": true,

tsconfig.jest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"target": "esnext",
66
"isolatedModules": true,
77
"allowSyntheticDefaultImports": true,
8-
"types": ["jest", "jest-extended"]
8+
"types": ["node", "jest", "jest-extended"]
99
},
1010
"include": ["src/**/*.ts", "tests/**/*.ts"]
1111
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
44
"rootDir": ".",
5-
"types": ["jest"],
5+
"types": ["node", "jest"],
66
"skipLibCheck": true
77
},
88
"include": ["**/*"]

0 commit comments

Comments
 (0)