Skip to content

Instantly share code, notes, and snippets.

@SKumarSpace
Created July 23, 2023 17:20
Show Gist options
  • Save SKumarSpace/b5f9686377000d567e04a320916137a4 to your computer and use it in GitHub Desktop.
Save SKumarSpace/b5f9686377000d567e04a320916137a4 to your computer and use it in GitHub Desktop.
Typescript Project Init - Basic
{
"main": "dist/index.js",
"scripts": {
"build": "npx tsc && node dist/index.js"
},
"devDependencies": {
"typescript": "^4.9.5"
}
}
{
"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