Last active
January 30, 2020 07:25
-
-
Save DearVikki/4277bef7e613eb076c4ad069b823ac38 to your computer and use it in GitHub Desktop.
typescriptCollection
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
{ | |
"compilerOptions": { | |
"module": "commonjs", | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"target": "es6", | |
"noImplicitAny": true, | |
"moduleResolution": "node", | |
"sourceMap": false, | |
"baseUrl": ".", | |
"paths": { | |
"*": [ | |
"node_modules/*", | |
"src/types/*" | |
] | |
} | |
}, | |
"include": [ | |
"src/**/*" | |
] | |
} |
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
npm i typescript -S | |
npm i @types/node -D | |
npm i ts-node -D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment