Skip to content

Commit d1a37bc

Browse files
authored
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
1 parent 54475dc commit d1a37bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"include": ["src", "test"],
4-
"exclude": ["src/index.browser.ts", "test/unit/webEsmBundle.browser.test.ts"]
4+
// These files to be excluded in case we run `check-types` before `build:bundle`
5+
"exclude": ["test/unit/webEsmBundle.browser.test.ts", "test/browser/webEsmBundle.browser.test.ts"]
56
}

0 commit comments

Comments
 (0)