mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Start work on improved widget interface for admin room * Add changes needed for InviteView * More widget bits * Lots more work to support setup widgets * Redesign work * Fix build order for web * Remove unused invite code * Update configs * Cleanup * Support widget branding * Tidy up web app * Support generic service config lookup * Stronger typings for configuration * Improve error text * fix patch * changelog * First pass on documentation * Fix tests * fixes * Don't require room state / admin rooms for room config requests * Fix no render when secrets isn't provided * rework if logic * Fixes after feedback * more review fixes * Cleanup unused code * fix indent * Update matrix-appservice-bridge to 4.0.1 * Update widget API
29 lines
808 B
JSON
29 lines
808 B
JSON
{
|
|
"include": ["web"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2019",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"baseUrl": "./",
|
|
/* paths - If you configure Snowpack import aliases, add them here. */
|
|
"paths": {},
|
|
/* noEmit - Snowpack builds (emits) files, not tsc. */
|
|
"noEmit": true,
|
|
/* Additional Options */
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"typeRoots": [
|
|
"web/typings"
|
|
]
|
|
},
|
|
}
|
|
|