@gohcltech/edge-print-client 2.0.40-develop → 2.0.48-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.
- package/LICENSE +21 -0
- package/package.json +13 -5
- package/src/edge-print.test.ts +0 -680
- package/src/edge-print.ts +0 -685
- package/tsconfig.json +0 -14
- package/tsconfig.test.json +0 -16
package/tsconfig.test.json
DELETED
|
@@ -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
|
-
}
|