mirror of
https://github.com/officialdakari/Extera.git
synced 2025-04-11 23:08:46 +02:00
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)
18 lines
393 B
JSON
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"]
|
|
}
|