forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 848 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 848 Bytes
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
{
"extends": "../../tsconfig.json",
"references": [
{ "path": "../shared" },
{ "path": "../branded" },
{ "path": "../../schema" },
{ "path": "../http-client" },
{ "path": "../common" },
{ "path": "../codeintellify" },
{ "path": "../client-api" },
],
"compilerOptions": {
"module": "commonjs",
"baseUrl": ".",
"paths": {
"*": ["src/types/*", "../shared/src/types/*", "../common/src/types/*", "*"],
},
"jsx": "react-jsx",
"resolveJsonModule": true,
"rootDir": ".",
"outDir": "out",
},
"include": ["**/*", ".*", "src/**/*.json", "src/types/**/*.d.ts", "./code-intel-extensions.json"],
"exclude": [
"out",
"node_modules",
"../../node_modules",
"./build/**/*",
"coverage",
"stories", // TODO fix type errors and include
"src/end-to-end",
],
}