Vencord/tsconfig.json

18 lines
600 B
JSON
Raw Normal View History

2022-08-29 00:25:27 +00:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["DOM", "esnext", "esnext.array", "esnext.asynciterable", "esnext.symbol"],
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
2022-08-29 18:27:47 +00:00
"target": "ESNEXT",
// https://esbuild.github.io/api/#jsx-factory
2022-08-31 18:47:07 +00:00
"jsxFactory": "Vencord.Webpack.Common.React.createElement",
2022-09-30 22:42:50 +00:00
"jsxFragmentFactory": "Vencord.Webpack.Common.React.Fragment",
2022-08-29 18:27:47 +00:00
"jsx": "react"
2022-08-29 00:25:27 +00:00
},
2022-08-29 18:27:47 +00:00
"include": ["src/**/*"]
2022-08-29 00:25:27 +00:00
}