chore: fix tsconfig for type check for lightclient bundle (#7830)

**Motivation**

Make sure `chekc-type` script works without any error.

**Description**

- Update the tsconfig to exclude the browser bundle test
- This file was created as symlink to unit to run browser tests in
specific packages


**Steps to test or reproduce**

Run all tests
This commit is contained in:
Nazar Hussain
2025-05-14 22:37:00 +02:00
committed by GitHub
parent 54475dcc80
commit d1a37bc1f6

View File

@@ -1,5 +1,6 @@
{
"extends": "../../tsconfig.json",
"include": ["src", "test"],
"exclude": ["src/index.browser.ts", "test/unit/webEsmBundle.browser.test.ts"]
// These files to be excluded in case we run `check-types` before `build:bundle`
"exclude": ["test/unit/webEsmBundle.browser.test.ts", "test/browser/webEsmBundle.browser.test.ts"]
}