Skip to content

Commit

Permalink
ts-node to tsx (#1291)
Browse files Browse the repository at this point in the history
Co-authored-by: Chris <[email protected]>
  • Loading branch information
goastler and forgetso authored Jul 15, 2024
1 parent 772a77d commit 8df7948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"version": "1.0.0",
"configurations": [
{
"name": "TS-Node",
"name": "tsx",
"type": "node",
"request": "launch",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/ts-node",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
"runtimeArgs": ["--transpile-only", "--esm"],
"program": "${workspaceRoot}/dev/scripts/src/cli/index.ts",
"args": ["version"],
Expand Down
2 changes: 1 addition & 1 deletion packages/provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build:debug": "tsc --build --verbose",
"build:config": "tsc --project",
"test": "npx vitest run --config ./vite.test.config.ts",
"mnemonic": "ts-node ./scripts/generateMnemonic.ts",
"mnemonic": "tsx ./scripts/generateMnemonic.ts",
"coverage": "npx c8 npm run test",
"eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet",
"eslint:fix": "npm run eslint -- --fix --quiet",
Expand Down

0 comments on commit 8df7948

Please sign in to comment.