-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
32 lines (32 loc) · 1.18 KB
/
tsconfig.base.json
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
{
"compilerOptions": {
"target": "ESNext",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "CommonJS",
"moduleResolution": "node",
"baseUrl": "./",
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"importHelpers": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"@focalors/custom-client": ["packages/custom-client/src/index.ts"],
"@focalors/gpt-client": ["packages/gpt-client/src/index.ts"],
"@focalors/logger": ["packages/logger/src/index.ts"],
"@focalors/onebot-protocol": [
"packages/onebot-protocol/src/index.ts"
],
"@focalors/wechat-bridge": ["packages/wechat-bridge/src/index.ts"],
"@focalors/wechat-ferry-agent": [
"packages/wechat-ferry-agent/src/index.ts"
],
"@focalors/wechaty-agent": ["packages/wechaty-agent/src/index.ts"],
"@focalors/yunzai-client": ["packages/yunzai-client/src/index.ts"]
}
}
}