summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: 986e0c9fc120a705dc4fdbefdad8e7a45433a1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "compilerOptions": {
        "baseUrl": "./src",
        "jsx": "react",
        "moduleResolution": "Node",
        "paths": {
            "~*": [
                "./*"
            ]
        },
        "strict": true,
        "target": "ES2015"
    },
    "include": [
        "src/**/*"
    ]
}