-
David Sehnal authoredDavid Sehnal authored
tsconfig.json 591 B
{
"compilerOptions": {
"target": "es5",
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"sourceMap": false,
"noUnusedLocals": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
//"downlevelIteration": true,
"lib": [ "es6", "dom" ],
"outDir": "build/node_modules",
"baseUrl": "src",
"paths": {
"mol-base": ["./mol-base"],
"mol-data": ["./mol-data"],
"mol-io": ["./mol-io"]
}
},
"include": [ "**/*" ]
}