Skip to content

Instantly share code, notes, and snippets.

@AhmedCommando
Created July 5, 2019 20:35
Show Gist options
  • Save AhmedCommando/742df782889f47233a29b120b1b09f82 to your computer and use it in GitHub Desktop.
Save AhmedCommando/742df782889f47233a29b120b1b09f82 to your computer and use it in GitHub Desktop.
tsconfig development mode
{
"compilerOptions": {
"module": "es6",
"noImplicitAny": true,
"target": "es5",
"outDir": "./build/",
"sourceMap": true,
"allowJs": 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