ModularVencord/scripts/tsconfig.json

24 lines
561 B
JSON

{
"include": ["**/*", "../eslint.config.mjs"],
"references": [{ "path": ".." }],
"compilerOptions": {
"noUncheckedIndexedAccess": true,
"strict": true,
"module": "NodeNext",
"resolveJsonModule": true,
"noEmit": true,
"allowJs": true,
"checkJs": true,
"allowSyntheticDefaultImports": true,
// https://github.com/microsoft/TypeScript/issues/58353
// https://github.com/microsoft/TypeScript/issues/44540
"jsx": "preserve",
"target": "ESNext"
}
}