Skip to content
Snippets Groups Projects
tsconfig.json 1.1 KiB
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,
arose's avatar
arose committed
        "jsx": "react",
Alexander Rose's avatar
Alexander Rose committed
        "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
        "outDir": "build/node_modules",
        "baseUrl": "src",
        "paths": {
Alexander Rose's avatar
Alexander Rose committed
            "mol-app": ["./mol-app"],
David Sehnal's avatar
David Sehnal committed
            "mol-data": ["./mol-data", "./mol-data/index.ts"],
Alexander Rose's avatar
Alexander Rose committed
            "mol-geo": ["./mol-geo"],
            "mol-gl": ["./mol-gl"],
David Sehnal's avatar
David Sehnal committed
            "mol-io": ["./mol-io"],
            "mol-math": ["./mol-math"],
            "mol-model": ["./mol-model"],
            "mol-model-props": ["./mol-model-props"],
            "mol-ql": ["./mol-ql"],
Alexander Rose's avatar
Alexander Rose committed
            "mol-script": ["./mol-script"],
            "mol-task": ["./mol-task", "./mol-task/index.ts"],
            "mol-util": ["./mol-util", "./mol-util/index.ts"],
Alexander Rose's avatar
Alexander Rose committed
            "mol-view": ["./mol-view"]
    "include": [ "**/*" ]