-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 855 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 855 Bytes
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",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "bundler",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": ".",
"baseUrl": ".",
"types": ["node"],
"paths": {
"openclaw/plugin-sdk": ["../openclaw/dist/plugin-sdk/plugin-sdk/index.d.ts"],
"openclaw/plugin-sdk/*": ["../openclaw/dist/plugin-sdk/plugin-sdk/*.d.ts"]
}
},
"include": ["index.ts", "src/**/*.ts"],
"exclude": ["node_modules", "dist", "scripts"]
}