Created
July 23, 2023 17:20
-
-
Save SKumarSpace/b5f9686377000d567e04a320916137a4 to your computer and use it in GitHub Desktop.
Typescript Project Init - Basic
This file contains 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
{ | |
"main": "dist/index.js", | |
"scripts": { | |
"build": "npx tsc && node dist/index.js" | |
}, | |
"devDependencies": { | |
"typescript": "^4.9.5" | |
} | |
} |
This file contains 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
Show hidden characters
{ | |
"compilerOptions": { | |
"module": "commonjs", | |
"esModuleInterop": true, | |
"target": "es6", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"outDir": "dist" | |
}, | |
"lib": ["es2015"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment