aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 620512ab5a5e8555d042c1ec1f3b823e9a178746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "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/**/*"]
}