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