Update tsconfig to use ./lib as a reference

This commit is contained in:
mmcwilliams 2019-03-21 14:55:52 -04:00
parent 2408456d47
commit 72575ce2a4
1 changed files with 5 additions and 1 deletions

View File

@ -7,8 +7,12 @@
"moduleResolution": "node", "moduleResolution": "node",
"sourceMap": true, "sourceMap": true,
"removeComments" : false, "removeComments" : false,
"baseUrl" : "lib",
"outDir": "./lib/", "outDir": "./lib/",
"rootDir" : "./src/" "rootDir" : "./src/",
"paths" : {
"log" : ["./lib/log"]
}
}, },
"exclude" : [] "exclude" : []
} }