Skip to content

Commit

Permalink
Fix/resolve build error (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
vboechat authored May 18, 2024
2 parents 3b1b4d3 + b25c880 commit 60652ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ jobs:

- name: Test project
run: yarn test

- name: Build project
run: yarn build
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.12.12",
"axios": "^1.6.8",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
Expand Down
8 changes: 6 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
"declaration": true,
"declarationDir": "./dist",
"emitDeclarationOnly": false,
"module": "commonjs",
"target": "es6"
"target": "ESNext",
"module": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "NodeNext"
},
"include": ["src"]
}

0 comments on commit 60652ba

Please sign in to comment.