Files
dify/web/tsconfig.json
2026-07-13 08:00:39 +00:00

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"]
}