FastGPT/projects/app/tsconfig.json
2025-12-04 15:37:22 +08:00

22 lines
481 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@test/*": ["../../test/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.d.ts",
"../../packages/**/*.d.ts",
"../../test/list.test.ts",
"../../packages/service/core/workflow/dispatch/ai/agent/type.ts",
"../../packages/service/core/workflow/dispatch/type.ts"
],
"exclude": ["**/*.test.ts"]
}