mirror of
https://github.com/teableio/teable.git
synced 2026-02-05 13:07:11 +08:00
* chore: update tracing details * feat: add attachemnt ro * feat: upgrade to zod 4 and ai-sdk 5 * chore: openapi -> meta * feat: ai-sdk 6 * chore: standard resource type * feat: grid view state subscriber * feat: pick upgrade node to 22 * fix: remove swagger to makesure backend start * fix: remove swagger to makesure backend start * chore: fix typecheck * chore: clean ui effect * chore: i18n for tools * fix: card ui * chore: update ai sdk provider * fix: should not delete the last view in table * feat: better zod error * chore: clean base card * fix: restore into base logic * chore: i18n for tools * chore: i18n for tools * fix: swagger is back * fix: pnpm lock * fix: unit test * fix: remove token * fix: typecheck * feat: proxy setting * chore: update i18n for chat * chore: tools i18n * chore: upgrade ai sdk * chore: i18n for ai gateway * chore: rename app generation to app builder * chore: remove deprecated version * feat: adjust feature limitations * chore: tools i18n * fix: lint issue * fix: api tag * chore: zod i18n * chore: add credit limit exceeded error handling --------- Co-authored-by: SkyHuang <sky.huang.fe@gmail.com>
29 lines
769 B
JSON
29 lines
769 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"composite": true,
|
|
"rootDir": "../",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@teable/core": ["../core/src"]
|
|
},
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/", "./dist", "./coverage"],
|
|
"include": ["src", "../core/src"]
|
|
}
|