mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:51:57 +00:00
31 lines
726 B
JSON
31 lines
726 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"]
|
|
}
|