2019-10-11 21:55:11 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"target": "ES2017",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments" : false,
|
|
|
|
"baseUrl" : "lib",
|
|
|
|
"outDir": "./lib/",
|
|
|
|
"rootDir" : "./src/",
|
|
|
|
"paths" : {
|
2019-10-11 22:15:32 +00:00
|
|
|
"log" : ["./lib/log"],
|
|
|
|
"delay" : [ "./lib/delay"]
|
2019-10-11 21:55:11 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude" : [
|
|
|
|
"./app",
|
|
|
|
"./node_modules",
|
|
|
|
"./experiments",
|
|
|
|
"./test"
|
|
|
|
]
|
|
|
|
}
|