-
-
Save Goodwine/4cc0f2c078c6fb163006633c0ef48fad to your computer and use it in GitHub Desktop.
npm install; npx tsc
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
{ | |
"dependencies": { | |
"tar": "^7.4.3", | |
"minizlib": "^3.0.1" | |
}, | |
"devDependencies": { | |
"@types/node": "^20.12.7", | |
"typescript": "^5.0.2" | |
} | |
} |
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
import * as tar from 'tar'; | |
console.log("Hello, world!"); |
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
{ | |
"compilerOptions": { | |
"outDir": "dist", | |
"module": "CommonJS", | |
"rootDir": ".", | |
"useUnknownInCatchVariables": false, | |
"declaration": false, | |
"target": "ES6" | |
}, | |
"include": [ | |
"*.ts", | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for putting this up here.