mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 14:31:56 +00:00
* reapply "switch from jest to vitest for faster, simpler tests (https://github.com/sourcegraph/sourcegraph/pull/57886)" This was reverted in https://github.com/sourcegraph/sourcegraph/pull/58116 due to an issue with the browser tests. * include fetch-mock * fix flakiness * rm mock that did not work in experimentalVmThreads * fix * timeout * fixup --------- Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
55 lines
978 B
JSON
55 lines
978 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"jsx": "react-jsx",
|
|
"resolveJsonModule": true,
|
|
"rootDir": ".",
|
|
"outDir": "out",
|
|
},
|
|
"include": ["src", "config", "src/**/*.json", "src/types/**/*.d.ts", "./code-intel-extensions.json"],
|
|
"exclude": [
|
|
"out",
|
|
"node_modules",
|
|
"../../node_modules",
|
|
"./build/**/*",
|
|
"stories", // TODO fix type errors and include
|
|
"src/end-to-end",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../branded",
|
|
},
|
|
{
|
|
"path": "../build-config",
|
|
},
|
|
{
|
|
"path": "../client-api",
|
|
},
|
|
{
|
|
"path": "../codeintellify",
|
|
},
|
|
{
|
|
"path": "../common",
|
|
},
|
|
{
|
|
"path": "../extension-api",
|
|
},
|
|
{
|
|
"path": "../extension-api-types",
|
|
},
|
|
{
|
|
"path": "../http-client",
|
|
},
|
|
{
|
|
"path": "../shared",
|
|
},
|
|
{
|
|
"path": "../wildcard",
|
|
},
|
|
{
|
|
"path": "../testing",
|
|
},
|
|
],
|
|
}
|