mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 14:31:56 +00:00
75 lines
1.2 KiB
JSON
75 lines
1.2 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"baseUrl": ".",
|
|
"jsx": "react-jsx",
|
|
"rootDir": ".",
|
|
"outDir": "out",
|
|
"resolveJsonModule": true,
|
|
},
|
|
"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", "scripts", "__mocks__", "./src/**/*.json"],
|
|
"exclude": [
|
|
"vitest.config.ts",
|
|
"dev",
|
|
"../../node_modules",
|
|
"./node_modules",
|
|
"./out",
|
|
"src/end-to-end",
|
|
"src/regression",
|
|
"src/integration",
|
|
],
|
|
"ts-node": {
|
|
"moduleTypes": {
|
|
"scripts/**/*": "cjs",
|
|
},
|
|
},
|
|
}
|