mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:11:54 +00:00
* web: flattened frontend packages inside of the client folder
* web: please prettier 🙏
* web: reverted redundant changes
* web: reverted redundant whitespace changes
* Update client/README.md
Co-authored-by: Patrick Dubroy <patrick@sourcegraph.com>
* Update client/README.md
Co-authored-by: Patrick Dubroy <patrick@sourcegraph.com>
* Update client/README.md
Co-authored-by: Patrick Dubroy <patrick@sourcegraph.com>
* web: updated client/README
* Update client/README.md
Co-authored-by: Tom Ross <tom@umpox.com>
* web: changed licenses to Apache-2.0 for frontend packages
* web: reverted redudant change
* web: updated client/README
* web: added issue #
* web: added issue #
Co-authored-by: Patrick Dubroy <patrick@sourcegraph.com>
Co-authored-by: Tom Ross <tom@umpox.com>
32 lines
730 B
JSON
32 lines
730 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"],
|
|
}
|