mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:51:43 +00:00
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"extends": "@sourcegraph/tsconfig",
|
|
"references": [
|
|
{ "path": "shared" },
|
|
{ "path": "shared/src/e2e" },
|
|
{ "path": "web" },
|
|
{ "path": "web/src/e2e" },
|
|
{ "path": "web/src/regression" },
|
|
{ "path": "browser" },
|
|
{ "path": "browser/src/e2e" },
|
|
{ "path": "lsif" },
|
|
{ "path": "schema" },
|
|
{ "path": "packages/sourcegraph-extension-api" },
|
|
{ "path": "packages/@sourcegraph/extension-api-types" },
|
|
{ "path": "dev/release" },
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"allowJs": false,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"noErrorTruncation": true,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"composite": true,
|
|
"outDir": "out",
|
|
"rootDir": ".",
|
|
},
|
|
|
|
"include": [],
|
|
"exclude": ["out", "node_modules"],
|
|
}
|