27 lines
868 B
JSON
27 lines
868 B
JSON
{
|
|
"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"]
|
|
}
|