forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (37 loc) · 1020 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"extends": "@sourcegraph/tsconfig",
"references": [
{ "path": "shared" },
{ "path": "shared/src/testing" },
{ "path": "web" },
{ "path": "web/src/end-to-end" },
{ "path": "web/src/regression" },
{ "path": "browser" },
{ "path": "browser/src/end-to-end" },
{ "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"],
}