mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
27 lines
613 B
JSON
27 lines
613 B
JSON
{
|
|
"extends": "@sourcegraph/tsconfig",
|
|
"references": [],
|
|
"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"],
|
|
}
|