ModularVencord/scripts/tsconfig.json

25 lines
561 B
JSON
Raw Normal View History

2024-06-15 19:46:33 +00:00
{
"include": ["**/*", "../eslint.config.mjs"],
"references": [{ "path": ".." }],
2024-06-15 19:46:33 +00:00
"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",
2024-06-15 19:46:33 +00:00
"target": "ESNext"
}
2024-06-15 19:46:33 +00:00
}