Initial commit

Contains basic working logic to find unused repos and show in console
This commit is contained in:
2018-05-31 17:48:44 +05:30
commit bfb2b54634
21 changed files with 6798 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"lib": [
"esnext",
"dom"
],
"target": "es2015",
"strict": true,
"outDir": "./lib",
"preserveConstEnums": true,
"removeComments": true,
"inlineSourceMap": true,
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*-spec.ts"
]
}