-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.88 KB
/
Copy pathtsconfig.json
File metadata and controls
42 lines (42 loc) · 1.88 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"@jx/shared": ["packages/shared/src/index.ts"],
"@jx/schemas": ["packages/schemas/src/index.ts"],
"@jx/event-bus": ["packages/event-bus/src/index.ts"],
"@jx/configuration": ["packages/configuration/src/index.ts"],
"@jx/executors": ["packages/executors/src/index.ts"],
"@jx/mock-executor": ["packages/mock-executor/src/index.ts"],
"@jx/mineflayer-executor": ["packages/mineflayer-executor/src/index.ts"],
"@jx/baritone-executor": ["packages/baritone-executor/src/index.ts"],
"@jx/skills": ["packages/skills/src/index.ts"],
"@jx/progression": ["packages/progression/src/index.ts"],
"@jx/planner": ["packages/planner/src/index.ts"],
"@jx/reflexes": ["packages/reflexes/src/index.ts"],
"@jx/memory": ["packages/memory/src/index.ts"],
"@jx/rewards": ["packages/rewards/src/index.ts"],
"@jx/training-client": ["packages/training-client/src/index.ts"],
"@jx/teacher-client": ["packages/teacher-client/src/index.ts"],
"@jx/evaluation": ["packages/evaluation/src/index.ts"],
"@jx/security-audit": ["packages/security-audit/src/index.ts"],
"@jx/telemetry": ["packages/telemetry/src/index.ts"]
}
},
"include": ["apps/**/*.ts", "packages/**/*.ts", "scripts/**/*.ts", "vitest.config.ts", "eslint.config.js"],
"exclude": ["node_modules", "apps/dashboard", "apps/baritone-bridge/build"]
}