mirror of
https://github.com/apache/superset.git
synced 2026-07-15 11:15:44 +00:00
Ships the full extensions/chat reference implementation that exercises the chatbot extension platform end-to-end: activation lifecycle and master disposable (teardown contract), React error boundary (fault isolation), mock streaming with AbortController cancellation, commands registration, and the pageContext helper that composes host namespaces. Local branch only — not intended for upstream merge. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
326 B
JSON
16 lines
326 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@apache-superset/core": ["src/__tests__/sdkMock.ts"]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"../../superset-frontend/node_modules/@types"
|
|
],
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": ["src"]
|
|
}
|