2020-01-10 21:43:12 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"target": "ES2016",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments" : false,
|
|
|
|
"baseUrl" : "lib",
|
|
|
|
"outDir": "./",
|
|
|
|
"rootDir" : "./src/",
|
|
|
|
"paths" : {
|
2022-08-08 02:10:53 +00:00
|
|
|
"log" : ["./lib/log"],
|
|
|
|
"mscript" : ["./lib/mscript"]
|
2020-01-10 21:43:12 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude" : [
|
|
|
|
"./node_modules"
|
|
|
|
]
|
|
|
|
}
|