|
8 | 8 | }, |
9 | 9 | "main": "index.js", |
10 | 10 | "scripts": { |
11 | | - "build": "tsc && node --experimental-strip-types scripts/post-build.ts", |
| 11 | + "build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts", |
12 | 12 | "typecheck": "tsc --noEmit", |
13 | 13 | "format": "eslint --cache --fix . && prettier --write --cache .", |
14 | 14 | "check-format": "eslint --cache . && prettier --check --cache .;", |
15 | 15 | "docs": "npm run build && npm run docs:generate && npm run format", |
16 | 16 | "docs:generate": "node --experimental-strip-types scripts/generate-docs.ts", |
17 | 17 | "start": "npm run build && node build/src/index.js", |
18 | 18 | "start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/index.js", |
19 | | - "test": "npm run build && node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"", |
20 | | - "test:only": "npm run build && node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"", |
21 | | - "test:only:no-build": "node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"", |
22 | | - "test:update-snapshots": "npm run build && node --require ./build/tests/setup.js --test-force-exit --test --test-update-snapshots \"build/tests/**/*.test.js\"", |
| 19 | + "test": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"", |
| 20 | + "test:only": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"", |
| 21 | + "test:only:no-build": "node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"", |
| 22 | + "test:update-snapshots": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-force-exit --test --test-update-snapshots \"build/tests/**/*.test.js\"", |
23 | 23 | "prepare": "node --experimental-strip-types scripts/prepare.ts" |
24 | 24 | }, |
25 | 25 | "files": [ |
|
0 commit comments