mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:11:54 +00:00
- The new `client/cody-ui` package (`@sourcegraph/cody-ui`) contains reusable components for Cody's UI that are shared among all web UIs for Cody. - The Sourcegraph web app repo sidebar now adds a `Cody` tab (alongside files and symbols) when the `cody-experimental` feature flag is enabled. This lets you use Cody in the web app. - A new demonstration `client/cody-web` package implements a standalone web app for Cody. No behavior change is intended to the Cody code. ## Test plan Build and run the Cody extension locally. Ensure that it still functions as is. All other changes are experimental and behind a feature flag (in the main web app).
68 lines
1.2 KiB
JSON
68 lines
1.2 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["src/types/*", "../shared/src/types/*", "../common/src/types/*", "*"],
|
|
},
|
|
"jsx": "react-jsx",
|
|
"rootDir": ".",
|
|
"outDir": "out",
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../schema",
|
|
},
|
|
{
|
|
"path": "../branded",
|
|
},
|
|
{
|
|
"path": "../build-config",
|
|
},
|
|
{
|
|
"path": "../client-api",
|
|
},
|
|
{
|
|
"path": "../codeintellify",
|
|
},
|
|
{
|
|
"path": "../cody-shared",
|
|
},
|
|
{
|
|
"path": "../cody-ui",
|
|
},
|
|
{
|
|
"path": "../common",
|
|
},
|
|
{
|
|
"path": "../extension-api-types",
|
|
},
|
|
{
|
|
"path": "../http-client",
|
|
},
|
|
{
|
|
"path": "../observability-client",
|
|
},
|
|
{
|
|
"path": "../shared",
|
|
},
|
|
{
|
|
"path": "../storybook",
|
|
},
|
|
{
|
|
"path": "../testing",
|
|
},
|
|
{
|
|
"path": "../wildcard",
|
|
},
|
|
],
|
|
"include": ["**/*", ".*", "./src/**/*.json"],
|
|
"exclude": ["../../node_modules", "./node_modules", "./out", "src/end-to-end", "src/regression", "src/integration"],
|
|
"ts-node": {
|
|
"moduleTypes": {
|
|
"scripts/**/*": "cjs",
|
|
},
|
|
},
|
|
}
|