forked from sourcegraph/cody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 864 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
{
"extends": "@sourcegraph/tsconfig",
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"strict": true,
"lib": ["ESNext"],
"isolatedModules": false,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noErrorTruncation": true,
"resolveJsonModule": true,
"composite": true,
"outDir": "dist",
"rootDir": "."
},
"include": [".config/*.ts"],
"exclude": ["dist", "node_modules"],
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriority"
},
"references": [
{ "path": "agent" },
{ "path": "lib/shared" },
{ "path": "lib/ui" },
{ "path": "vscode" },
{ "path": "vscode/test/integration" },
{ "path": "vscode/scripts" }
]
}