-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 1.16 KB
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"types": ["node", "vitest/globals"],
"baseUrl": ".",
"paths": {
"openclaw/plugin-sdk/config-runtime": ["./src/test-support/openclaw/config-runtime.ts"],
"openclaw/plugin-sdk/plugin-entry": ["./src/test-support/openclaw/plugin-entry.ts"],
"openclaw/plugin-sdk/provider-web-search": [
"./src/test-support/openclaw/provider-web-search.ts"
],
"openclaw/plugin-sdk/provider-web-search-contract": [
"./src/test-support/openclaw/provider-web-search-contract.ts"
],
"openclaw/plugin-sdk/secret-input": ["./src/test-support/openclaw/secret-input.ts"],
"openclaw/plugin-sdk/security-runtime": ["./src/test-support/openclaw/security-runtime.ts"],
"openclaw/plugin-sdk/text-runtime": ["./src/test-support/openclaw/text-runtime.ts"]
}
},
"include": ["./*.ts", "./src/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"]
}