intval3/tsconfig.json

25 lines
599 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2017",
"noImplicitAny": true,
"allowSyntheticDefaultImports" : true,
"moduleResolution": "node",
"sourceMap": true,
"removeComments" : false,
"baseUrl" : "lib",
"outDir": "./lib/",
"rootDir" : "./src/",
"paths" : {
"log" : ["./lib/log"],
"delay" : [ "./lib/delay"]
}
},
"exclude" : [
"./app",
"./node_modules",
"./experiments",
"./test"
]
}