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