Created
December 16, 2018 13:00
-
-
Save klogic/486965decd0ab872b9e0ef7b7dbaa065 to your computer and use it in GitHub Desktop.
tsconfig.json
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": { | |
"target": "esnext", | |
"module": "commonjs", | |
"baseUrl": ".", | |
"outDir": "dist", | |
"jsx": "react", | |
"moduleResolution": "node", | |
"allowJs": true, | |
"paths": { | |
"*": [ | |
"node_modules/", | |
] | |
} | |
}, | |
"include": [ | |
"*.tsx", | |
"./controllers/*", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment