forked from JrCx7scC/claude-code-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
65 lines (65 loc) · 1.6 KB
/
tsconfig.json
File metadata and controls
65 lines (65 loc) · 1.6 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"compilerOptions": {
"target": "ESNext",
"module": "Preserve",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"types": [
"bun-types"
],
"baseUrl": ".",
"paths": {
"src/*": [
"./src/*"
],
"@ant/claude-for-chrome-mcp": [
"./deps/@ant/claude-for-chrome-mcp/src/index.ts"
],
"@ant/computer-use-mcp": [
"./deps/@ant/computer-use-mcp/src/index.ts"
],
"@ant/computer-use-mcp/types": [
"./deps/@ant/computer-use-mcp/src/types.ts"
],
"@ant/computer-use-mcp/sentinelApps": [
"./deps/@ant/computer-use-mcp/src/sentinelApps.ts"
],
"@ant/computer-use-input": [
"./deps/@ant/computer-use-input/js/index.js"
],
"@ant/computer-use-swift": [
"./deps/@ant/computer-use-swift/js/index.js"
],
"audio-capture-napi": [
"./vendor/audio-capture-src/index.ts"
],
"image-processor-napi": [
"./vendor/image-processor-src/index.ts"
],
"url-handler-napi": [
"./vendor/url-handler-src/index.ts"
],
"modifiers-napi": [
"./vendor/modifiers-napi-src/index.ts"
],
"color-diff-napi": [
"./src/native-ts/color-diff/index.ts"
]
}
},
"include": [
"global.d.ts",
"text-imports.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"deps/**/*.ts",
"vendor/**/*.ts"
]
}