Skip to content

Commit

Permalink
use ts-node
Browse files Browse the repository at this point in the history
  • Loading branch information
aliXsed committed Dec 10, 2024
1 parent dcc47c0 commit c088359
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"github.copilot.chat.inlineChatCompletionTrigger.enabled": true,
"github.copilot.chat.inlineChatHint.enabled": true,
"github.copilot.chat.search.semanticTextResults": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": null
}
6 changes: 3 additions & 3 deletions clk-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "clk-gateway",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"license": "BSD-3-Clause",
"dependencies": {
"@types/node": "^22.9.4",
"cors": "^2.8.5",
Expand All @@ -28,10 +28,10 @@
"scripts": {
"fmt": "prettier --write src/**/*.ts",
"test": "jest",
"start": "node dist/index.js",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"serve": "yarn build && yarn start",
"createToken": "node dist/createToken.js"
"createToken": "ts-node src/createToken.ts"
}
}

0 comments on commit c088359

Please sign in to comment.