Skip to content

Commit

Permalink
tsx -> ts-node (Due to privatenumber/tsx#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
junhoyeo committed Feb 19, 2024
1 parent f2a90a9 commit fc49a93
Show file tree
Hide file tree
Showing 4 changed files with 155 additions and 281 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
5 changes: 2 additions & 3 deletions typescript/deployer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
"name": "@mint-cash/burndrop-deployer",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"start": "tsx"
"start": "ts-node"
},
"dependencies": {
"@cosmjs/amino": "^0.32.2",
Expand All @@ -20,7 +19,7 @@
},
"devDependencies": {
"@types/node": "^18.16.0",
"tsx": "^4.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
}
}
4 changes: 1 addition & 3 deletions typescript/deployer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"compilerOptions": {
"target": "es2020",
"lib": ["esnext"],
"module": "CommonJS",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"declaration": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
Expand Down
Loading

0 comments on commit fc49a93

Please sign in to comment.