@gohcltech/edge-print-client 2.0.40-develop → 2.0.42-develop

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +0,0 @@
1
- // Typechecks the test suite, which the build config deliberately excludes so
2
- // test files never reach dist/. `vitest run` strips types without checking
3
- // them, so without this pass a signature change would neither fail the build
4
- // nor fail the tests.
5
- {
6
- "extends": "./tsconfig.json",
7
- "compilerOptions": {
8
- "noEmit": true,
9
- // Skips vitest's and vite's own .d.ts files, which expect Node types this
10
- // browser-targeted package does not carry. Only declaration files are
11
- // skipped — the test is still checked in full against edge-print.ts.
12
- "skipLibCheck": true
13
- },
14
- "include": ["src/**/*.ts"],
15
- "exclude": []
16
- }