mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
Internal revision: sourcegraph/sourcegraph-intermediate-2018@d0cebbadc7 Executor: @slimsag
26 lines
670 B
JSON
26 lines
670 B
JSON
{
|
|
"extends": "./node_modules/@sourcegraph/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"typeRoots": ["./node_modules/@types", "./src/types"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["es2017", "es2017.object", "dom", "dom.iterable"],
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"noErrorTruncation": true,
|
|
"importHelpers": true,
|
|
"plugins": [
|
|
{
|
|
"name": "tslint-language-service"
|
|
}
|
|
]
|
|
},
|
|
"include": ["src/**/*", "./*.ts"]
|
|
}
|