Extera/tsconfig.json
OfficialDakari 3463eeb213 Added multi-language support (Russian, English)
Translated most of the application
Remade text editor to use "textarea"
Added back button support for mobile
Added chat hiding
Added redacted message recovery (Only on Synapse, for admins)
2024-07-22 17:40:01 +05:00

18 lines
393 B
JSON

{
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
"target": "ES2016",
"module": "ES2020",
"lib": ["ES2021", "DOM"],
"allowJs": true,
"strict": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"outDir": "dist",
"skipLibCheck": true
},
"exclude": ["node_modules", "dist"],
"include": ["src"]
}