Skip to content
Snippets Groups Projects
tsconfig.json 591 B
Newer Older
Alexander Rose's avatar
Alexander Rose committed
{
    "compilerOptions": {
David Sehnal's avatar
David Sehnal committed
        "target": "es5",
Alexander Rose's avatar
Alexander Rose committed
        "alwaysStrict": true,
        "noImplicitAny": true,
        "noImplicitThis": true,
        "sourceMap": false,
        "noUnusedLocals": true,
        "strictNullChecks": true,
David Sehnal's avatar
David Sehnal committed
        "strictFunctionTypes": true,
David Sehnal's avatar
David Sehnal committed
        //"downlevelIteration": true,
David Sehnal's avatar
David Sehnal committed
        "lib": [ "es6", "dom" ],
        "outDir": "build/node_modules",
        "baseUrl": "src",
        "paths": {
            "mol-base": ["./mol-base"],
            "mol-data": ["./mol-data"],
            "mol-io": ["./mol-io"]
        }
    "include": [ "**/*" ]