Last active
June 30, 2022 15:22
-
-
Save petrosDemetrakopoulos/b93e6c1f5b9e2b83f81fff43b30dc701 to your computer and use it in GitHub Desktop.
Example tsconfig.json file
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": { | |
"outDir": "./dist/", | |
"noImplicitAny": true, | |
"sourceMap": true, | |
"module": "es6", | |
"target": "es5", | |
"jsx": "react", | |
"allowJs": true, | |
"moduleResolution": "node" | |
}, | |
"include": ["./src/**/*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment