sourcegraph/client/browser/tsconfig.json
Quinn Slack 4002774429
reapply "switch from jest to vitest for faster, simpler tests (#57886)" (#58145)
* 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>
2023-11-07 12:00:18 +02:00

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",
},
],
}