mirror of
https://mirror.skon.top/github.com/langgenius/dify.git
synced 2026-04-20 15:20:15 +08:00
31 lines
475 B
JSON
31 lines
475 B
JSON
{
|
|
"extends": "@dify/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
],
|
|
"~@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitest/globals",
|
|
"node"
|
|
],
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|