Skip to content

Commit

Permalink
feat(utils/sui-tokens): unify the ts syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
andresin87 committed Jan 8, 2025
1 parent 387503f commit f8e34ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node --import tsx
#!/usr/bin/env -S npx tsx

import {Command} from 'commander'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node --import tsx
#!/usr/bin/env -S npx tsx

import {Command} from 'commander'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node --import tsx
#!/usr/bin/env -S npx tsx

import {program} from 'commander'
import {createRequire} from 'node:module'
Expand Down
2 changes: 1 addition & 1 deletion utils/sui-tokens/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"rootDir": "./src",
"allowImportingTsExtensions": true,
"allowJs": true,
"module": "CommonJS",
"module": "ES2022",
"esModuleInterop": true,
"target": "ESNext",
"moduleResolution": "node",
Expand Down

0 comments on commit f8e34ff

Please sign in to comment.