openclaw/extensions/wps/tsconfig.json
testmsr b97cca2dad Draft
feat(channels): add WPS channel integration
2026-01-28 10:36:09 +08:00

20 lines
459 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"clawdbot/plugin-sdk": ["../../src/plugin-sdk/index.ts"]
}
},
"include": ["index.ts", "src/**/*"],
"exclude": ["node_modules"]
}