FastGPT/projects/app/tsconfig.json
2025-11-11 14:19:33 +08:00

21 lines
420 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"
],
"exclude": ["**/*.test.ts"]
}