-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.7 KB
/
Copy pathtsconfig.json
File metadata and controls
48 lines (48 loc) · 1.7 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["node"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"paths": {
"react": [
"../../../node_modules/.pnpm/@types+react@18.3.31/node_modules/@types/react/index.d.ts"
],
"react/jsx-runtime": [
"../../../node_modules/.pnpm/@types+react@18.3.31/node_modules/@types/react/jsx-runtime.d.ts"
],
"@deepseek-ai/cordis": [
"../../../../deepseek-harness/vendor/cordis/lib/types/index.d.ts"
],
"@deepseek-ai/dsh-typert-protocol": [
"../../../../deepseek-harness/packages/typert/protocol/lib/types/index.d.ts"
],
"@deepseek-ai/dsh-api-remotes/client": [
"../../../../deepseek-harness/packages/api/remotes/lib/types/client/index.d.ts"
],
"@deepseek-ai/dsh-client-ui-slots": [
"../../../../deepseek-harness/packages/client/ui-slots/lib/types/index.d.ts"
],
"@deepseek-ai/dsh-client-locale/client": [
"../../../../deepseek-harness/packages/client/locale/lib/types/client/index.d.ts"
],
"@deepseek-ai/dsh-client-ui-settings/client": [
"../../../../deepseek-harness/packages/client/ui-settings/lib/types/client/index.d.ts"
]
}
},
"include": ["src", "tests", "tsdown.config.ts", "vitest.config.ts"]
}