Vencord/tsconfig.json
2022-10-24 18:04:25 +01:00

29 lines
846 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",
"baseUrl": ".",
"paths": {
"@components": ["src/webpack/components/index.ts"],
"@components/*": ["src/webpack/components/*"]
}
},
"include": ["src/**/*"]
}