-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 730 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 730 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
{
"compilerOptions": {
"sourceMap": true,
"skipDefaultLibCheck": true,
"jsx": "react-jsx",
"baseUrl": ".",
"target": "ESNext",
"lib": ["ESNext", "dom"],
"allowSyntheticDefaultImports": true,
"declaration": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"paths": {
"@/*": ["src/*"],
"@lobehub/chat-plugin-sdk": ["src"],
"@lobehub/chat-plugin-sdk/*": ["src/*", "*"]
},
"types": ["vitest/globals"]
},
"exclude": ["client.ts", "tests", "openapi.ts"],
"include": ["src", "typings", "*.ts"]
}