sourcegraph/client/web/tsconfig.json
2024-05-09 13:18:35 +00:00

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