17 lines
600 B
JSON
17 lines
600 B
JSON
{
|
|
"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/**/*"]
|
|
}
|