Initial commit: OpenClaw Mattermost Extension

This commit is contained in:
2026-04-10 21:57:29 -07:00
commit 2072259fb6
126 changed files with 26403 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["DOM", "DOM.Iterable", "ES2022", "ScriptHost"],
"outDir": "dist",
"rootDir": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmitOnError": true,
"paths": {
"openclaw/plugin-sdk": ["../../.npm-global/lib/node_modules/openclaw/dist/plugin-sdk/index.d.ts"],
"openclaw/plugin-sdk/*": ["../../.npm-global/lib/node_modules/openclaw/dist/plugin-sdk/*.d.ts"]
}
},
"include": ["extensions/mattermost/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test-helpers.ts"]
}