Last active
April 5, 2022 22:43
-
-
Save mryhryki/8571a5af2437920eb9385042fdca7bc9 to your computer and use it in GitHub Desktop.
Test ts-node & esbuild-register.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules | |
| package-lock.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const main = (text: number): void => { | |
| console.log("Text:", text); | |
| } | |
| main("Not number"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "esbuild-register", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "index.js", | |
| "scripts": { | |
| "by-esbuild-register": "node --require esbuild-register ./index.ts", | |
| "by-ts-node": "ts-node ./index.ts" | |
| }, | |
| "author": "mryhryki", | |
| "license": "MIT", | |
| "devDependencies": { | |
| "esbuild-register": "^2.4.0", | |
| "ts-node": "^9.1.1" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment