Skip to content

Instantly share code, notes, and snippets.

View AhmedCommando's full-sized avatar
:octocat:
Having Fun

AhmedCommando

:octocat:
Having Fun
View GitHub Profile
@AhmedCommando
AhmedCommando / tsconfig.prod.json
Created July 5, 2019 20:50
tsconfig production mode
{
"extends": "./tsconfig",
"compilerOptions": {
"sourceMap": false
}
}
@AhmedCommando
AhmedCommando / tsconfig.json
Created July 5, 2019 20:35
tsconfig development mode
{
"compilerOptions": {
"module": "es6",
"noImplicitAny": true,
"target": "es5",
"outDir": "./build/",
"sourceMap": true,
"allowJs": true
},
"include": [