aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
blob: 7f2ac9cf4e1b54598bc4cf84e1abf57c20add61c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es6",
        "noImplicitAny": false,
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "sourceMap": true,
        "outDir": "dist/js",
        "noEmitOnError": false,
        "typeRoots": [ "node_modules/@types" ],
        "resolveJsonModule": true,
        "jsx": "react",
        "lib": [
            "es2019",
            "dom",
            "dom.iterable"
        ]
    }
}