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