Vencord/tsconfig.json

25 lines
666 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
// these short window aliases make the bundle ~10% smaller
"jsxFactory": "_Ve$",
"jsxFragmentFactory": "_VF$",
"jsx": "react"
},
"include": ["src/**/*"]
}