Skip to content

Commit 54a3228

Browse files
committed
fixing test issues
1 parent c94e767 commit 54a3228

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- develop
77
pull_request:
88
workflow_dispatch:
9-
9+
1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
node_modules
22
dist
33
.next
4-
tsconfig.json
54
.env.local

tsconfig.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "dist",
4+
"rootDir": "./src",
5+
"declaration": true,
6+
"target": "ES5",
7+
"module": "ES6",
8+
"moduleResolution": "node",
9+
"lib": ["ESNext"],
10+
"importHelpers": true,
11+
"esModuleInterop": true,
12+
"skipLibCheck": true
13+
},
14+
"include": ["src"]
15+
}

0 commit comments

Comments
 (0)