mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +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>
45 lines
800 B
JSON
45 lines
800 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"sourceRoot": "src",
|
|
"rootDir": ".",
|
|
"outDir": "./out",
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../build-config",
|
|
},
|
|
{
|
|
"path": "../client-api",
|
|
},
|
|
{
|
|
"path": "../codeintellify",
|
|
},
|
|
{
|
|
"path": "../common",
|
|
},
|
|
{
|
|
"path": "../extension-api",
|
|
},
|
|
{
|
|
"path": "../extension-api-types",
|
|
},
|
|
{
|
|
"path": "../http-client",
|
|
},
|
|
{
|
|
"path": "../template-parser",
|
|
},
|
|
{
|
|
"path": "../testing",
|
|
},
|
|
{
|
|
"path": "../wildcard",
|
|
},
|
|
],
|
|
"include": ["src", "dev", "./src/**/*.json"],
|
|
"exclude": ["../../node_modules", "./node_modules", "./out", "./src/end-to-end"],
|
|
}
|