mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
38 lines
853 B
JSON
38 lines
853 B
JSON
{
|
|
"extends": "@sourcegraph/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"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": "."
|
|
},
|
|
"watchOptions": {
|
|
"watchFile": "useFsEvents",
|
|
"watchDirectory": "useFsEvents",
|
|
"fallbackPolling": "dynamicPriority"
|
|
},
|
|
"include": [],
|
|
"exclude": ["out", "node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "client/extension-api"
|
|
},
|
|
{
|
|
"path": "client/extension-api-types"
|
|
}
|
|
]
|
|
}
|