mcopy/app/tsconfig.json

23 lines
522 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2016",
"noImplicitAny": true,
"declaration": false,
"moduleResolution": "node",
"sourceMap": true,
"removeComments" : false,
"baseUrl" : "lib",
"outDir": "./",
"rootDir" : "./src/",
"paths" : {
"log" : ["./lib/log"],
"mscript" : ["./lib/mscript"]
}
},
"exclude" : [
"./node_modules"
]
}