mirror of
https://github.com/langgenius/dify.git
synced 2026-07-15 17:37:38 +08:00
25 lines
510 B
JSON
25 lines
510 B
JSON
{
|
|
"extends": "@dify/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"~@/*": ["./*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["vitest/globals", "node"],
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".storybook/**/*.ts",
|
|
".storybook/**/*.tsx",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|