Skip to content

Instantly share code, notes, and snippets.

@timarney
Created April 26, 2019 19:09
Show Gist options
  • Save timarney/8c9884b230a8b4fc199cc4ac98f2587c to your computer and use it in GitHub Desktop.
Save timarney/8c9884b230a8b4fc199cc4ac98f2587c to your computer and use it in GitHub Desktop.
Node to TypeScript -> one function at a time
{
"compilerOptions": {
"module": "es6",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": false,
"outDir": "dist",
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*",
"src/*"
]
}
},
"include": [
"src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment