forked from chatgptprojects/clear-code
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.32 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.32 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
31
32
33
34
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": false,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"types": ["node"],
"baseUrl": ".",
"paths": {
"@ant/claude-for-chrome-mcp": ["./src/typings/@ant/claude-for-chrome-mcp/index.d.ts"],
"@ant/computer-use-input": ["./src/typings/@ant/computer-use-input/index.d.ts"],
"@ant/computer-use-mcp": ["./src/typings/@ant/computer-use-mcp/index.d.ts"],
"@ant/computer-use-mcp/types": ["./src/typings/@ant/computer-use-mcp/types.d.ts"],
"@ant/computer-use-mcp/sentinelApps": ["./src/typings/@ant/computer-use-mcp/sentinelApps.d.ts"],
"@ant/computer-use-swift": ["./src/typings/@ant/computer-use-swift/index.d.ts"],
"@anthropic-ai/claude-agent-sdk": ["./src/typings/@anthropic-ai/claude-agent-sdk/index.d.ts"],
"bun:bundle": ["./src/typings/bun-bundle.d.ts"],
"bun:ffi": ["./src/typings/bun-ffi.d.ts"],
"src/*": ["./src/*"]
}
},
"include": ["src/**/*", "vendor/**/*"]
}