mcopy/tsconfig.json

24 lines
534 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2017",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"removeComments" : false,
"declaration" : true,
"baseUrl" : "lib",
"outDir": "./lib/",
"rootDir" : "./src/",
"paths" : {
"log" : ["./lib/log"]
}
},
2019-04-20 14:14:22 +00:00
"exclude" : [
"./app",
"./cli",
"./node_modules",
"./dist"
2019-04-20 14:14:22 +00:00
]
}