mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:11:49 +00:00
Fixes the issue caused by the presence of the `sourcegraph: ''` entry in the `pnpm-lock.yaml`. If we install any new dependency, the `pnpm install` command fails on CI. [Failure example](https://github.com/sourcegraph/sourcegraph/actions/runs/4121774771/jobs/7117792725).
12 lines
275 B
JSON
12 lines
275 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"module": "commonjs",
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
},
|
|
"include": ["./src/**/*", "./src/**/*.json"],
|
|
"exclude": ["./node_modules", "../../node_modules", "out"],
|
|
}
|