Created
February 12, 2020 19:17
-
-
Save TylerSustare/45fc5df0ac02a3e3b163b61d8cf77e83 to your computer and use it in GitHub Desktop.
Default tsconfig
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": { | |
"target": "es2018", | |
"module": "commonjs", | |
"lib": ["ESNext", "ES2019", "es2018", "es2017", "es7", "es6", "dom"], | |
"declaration": true, | |
"outDir": "./dist", | |
"strict": false, | |
"esModuleInterop": true, | |
"resolveJsonModule": true, | |
"sourceMap": true, | |
"inlineSources": true, | |
"incremental": true | |
}, | |
"exclude": ["node_modules", "dist"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment