mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
* refactor: extract codeintellify as new package * feat: add client/codeintellify into lsif-ts Co-authored-by: gitstart-sourcegraph <gitstart@users.noreply.github.com>
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
// @ts-check
|
|
|
|
const config = require('../../jest.config.base')
|
|
|
|
const exportedConfig = {
|
|
...config,
|
|
displayName: 'codeintellify',
|
|
rootDir: __dirname,
|
|
roots: ['<rootDir>'],
|
|
verbose: true,
|
|
}
|
|
|
|
module.exports = exportedConfig
|