Skip to content

Commit 1be45ad

Browse files
authored
chore: fix type error in lib (#218)
1 parent 095bf84 commit 1be45ad

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/NodeCI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
run: yarn install
1717
- name: Lint
1818
run: yarn lint
19+
- name: Build
20+
run: yarn build
1921
test:
2022
runs-on: ubuntu-latest
2123
strategy:

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"noFallthroughCasesInSwitch": true,
1111
"noUnusedLocals": true,
1212
"noUnusedParameters": true,
13-
"esModuleInterop": true
13+
"esModuleInterop": true,
14+
15+
"skipLibCheck": true
1416
},
1517
"include": [
1618
"src/**/*.ts",

0 commit comments

Comments
 (0)