aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 5d87cedd2b1635665dcdf857a57032055599b266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "lib": [
            "DOM",
            "esnext",
            "esnext.array",
            "esnext.asynciterable",
            "esnext.symbol"
        ],
        "module": "commonjs",
        "moduleResolution": "node",
        "strict": true,
        "noImplicitAny": false,
        "target": "ESNEXT",
        // https://esbuild.github.io/api/#jsx-factory
        "jsxFactory": "Vencord.Webpack.Common.React.createElement",
        "jsxFragmentFactory": "Vencord.Webpack.Common.React.Fragment",
        "jsx": "react"
    },
    "include": ["src/**/*"]
}