Skip to content
Snippets Groups Projects
tsconfig.json 1.42 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-model-props/index.ts"],
            "mol-ql": ["./mol-ql"],
            "mol-repr": ["./mol-repr"],
Alexander Rose's avatar
Alexander Rose committed
            "mol-script": ["./mol-script"],
David Sehnal's avatar
David Sehnal committed
            "mol-state": ["./mol-state", "./mol-state/index.ts"],
            "mol-plugin": ["./mol-plugin", "./mol-plugin/index.ts"],
            "mol-task": ["./mol-task", "./mol-task/index.ts"],
            "mol-theme": ["./mol-theme"],
            "mol-util": ["./mol-util", "./mol-util/index.ts"],
    "include": [ "**/*" ],
    "files": [
        "./node_modules/@types/webgl2/index.d.ts"
    ],