Created
September 6, 2018 03:26
-
-
Save mikeerickson/3235e46635d4cef3a5867d164e5df7b3 to your computer and use it in GitHub Desktop.
TSC Configuration
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": "./build", | |
"rootDir": "./", | |
"noImplicitAny": true, | |
"target": "es5", | |
"sourceMap": false, | |
"allowSyntheticDefaultImports": false, | |
"allowJs": true, | |
"jsx": "react", | |
"noUnusedLocals": false, | |
"noUnusedParameters": false, | |
"moduleResolution": "node", | |
"lib": ["esnext", "es2015", "dom"], | |
"inlineSourceMap": false | |
}, | |
"include": ["./src/**/*", "./sandbox/**/*"], | |
"exclude": ["node_modules", "build", "**/*.spec.ts"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment