Created
May 7, 2020 21:50
-
-
Save Happytreat/1d4b90797e7404741c356abf74e7f15c to your computer and use it in GitHub Desktop.
TS Boilerplate: tsconfig
This file contains 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": { | |
"target": "es6", | |
"module": "commonjs", | |
"strict": true, | |
"outDir": "./dist", | |
"sourceMap": true, | |
"esModuleInterop": true, | |
"resolveJsonModule": true | |
}, | |
"include": ["src/*"], | |
"exclude": ["node_modules", "**/*.spec.ts"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment