Skip to content

Instantly share code, notes, and snippets.

@mikeerickson
Created September 6, 2018 03:26
Show Gist options
  • Save mikeerickson/3235e46635d4cef3a5867d164e5df7b3 to your computer and use it in GitHub Desktop.
Save mikeerickson/3235e46635d4cef3a5867d164e5df7b3 to your computer and use it in GitHub Desktop.
TSC Configuration
{
"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