Update tsconfig to use ./lib as a reference
This commit is contained in:
parent
2408456d47
commit
72575ce2a4
|
@ -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" : []
|
||||||
}
|
}
|
Loading…
Reference in New Issue