Created
April 26, 2019 19:09
-
-
Save timarney/8c9884b230a8b4fc199cc4ac98f2587c to your computer and use it in GitHub Desktop.
Node to TypeScript -> one function at a time
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
Show hidden characters
{ | |
"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