Files
FastGPT/projects/app/tsconfig.json
Archer 87b0bca30c Doc (#6493)
* cloud doc

* doc refactor

* doc move

* seo

* remove doc

* yml

* doc

* fix: tsconfig

* fix: tsconfig
2026-03-03 17:39:47 +08:00

20 lines
477 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@test/*": ["../../test/*"],
"@t3-oss/env-core": ["../../packages/service/node_modules/@t3-oss/env-core/dist/index.d.ts"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"../../packages/**/*.ts",
"../../packages/**/*.tsx"
],
"exclude": ["**/*.test.ts", "**/*.test.tsx", ".next", "dist", "coverage"]
}