Skip to content
Snippets Groups Projects
tsconfig.json 381 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
        //"downlevelIteration": true,
David Sehnal's avatar
David Sehnal committed
        "lib": [ "es6", "dom" ],
Alexander Rose's avatar
Alexander Rose committed
        "outDir": "build/js/src"
    },
    "include": [ "src/**/*" ]
}