2025-11-24 11:23:15 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-02-02 17:20:24 +09:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-02-03 22:50:00 +09:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"declaration": true,
|
2026-01-31 15:25:06 +09:00
|
|
|
"esModuleInterop": true,
|
2026-02-03 22:50:00 +09:00
|
|
|
"experimentalDecorators": true,
|
2026-01-31 15:25:06 +09:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2026-02-03 22:50:00 +09:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023", "ScriptHost"],
|
2025-11-24 11:23:15 +01:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2026-01-31 15:25:06 +09:00
|
|
|
"noEmit": true,
|
|
|
|
|
"noEmitOnError": true,
|
2025-11-24 11:23:15 +01:00
|
|
|
"outDir": "dist",
|
2026-01-31 15:25:06 +09:00
|
|
|
"resolveJsonModule": true,
|
2025-11-24 11:23:15 +01:00
|
|
|
"skipLibCheck": true,
|
2026-01-31 15:25:06 +09:00
|
|
|
"strict": true,
|
2026-02-03 13:56:20 -05:00
|
|
|
"target": "es2023",
|
2026-02-09 10:05:38 -08:00
|
|
|
"useDefineForClassFields": false,
|
|
|
|
|
"paths": {
|
2026-02-14 13:00:36 +00:00
|
|
|
"openclaw/plugin-sdk": ["./src/plugin-sdk/index.ts"],
|
2026-02-14 13:34:01 +00:00
|
|
|
"openclaw/plugin-sdk/*": ["./src/plugin-sdk/*.ts"],
|
|
|
|
|
"openclaw/plugin-sdk/account-id": ["./src/plugin-sdk/account-id.ts"]
|
2026-02-09 10:05:38 -08:00
|
|
|
}
|
2025-11-24 11:23:15 +01:00
|
|
|
},
|
2026-02-09 10:05:38 -08:00
|
|
|
"include": ["src/**/*", "ui/**/*", "extensions/**/*"],
|
2026-02-17 15:49:18 +09:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-11-24 11:23:15 +01:00
|
|
|
}
|