mirror of
https://github.com/langgenius/dify.git
synced 2026-05-21 01:07:03 +08:00
- docker-compose.yaml: revert api/web from build: back to image tags (1.14.1); fix api_websocket/worker/worker_beat downgraded to 1.14.0 - Remove verbose internal design comments from openapi controllers - web/next.config.ts: trim anti-framing comment to one line - cli/tsconfig.json: drop lib:ES2015 override (broke Error.cause typing) - eslint.config.mjs: ignore cli/context/** and cli/docs/** (local caches) - pnpm-lock.yaml: regenerate after fresh install
15 lines
328 B
JSON
15 lines
328 B
JSON
{
|
|
"extends": "@dify/tsconfig/node.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"types": ["node"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["dist", "test", "node_modules", "**/*.test.ts"]
|
|
}
|