Skip to content

Instantly share code, notes, and snippets.

@raphael-brand
Created March 26, 2021 15:48
Show Gist options
  • Save raphael-brand/897bc93b915db13eed2521f8ad2fc4c9 to your computer and use it in GitHub Desktop.
Save raphael-brand/897bc93b915db13eed2521f8ad2fc4c9 to your computer and use it in GitHub Desktop.
Node.js Typescript Configuration
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"sourceMap": true,
"resolveJsonModule": true,
"lib": ["es6", "dom"],
"esModuleInterop": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment