microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ec1a127c43e511cfaf5bdb778f936623a42ef74b

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/jest.config.js

11lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/** @type {import('ts-jest').JestConfigWithTsJest} */
5module.exports = {
6 testMatch: ["**/dist/test/**/*.(spec|test).js?(x)"],
7 testEnvironment: "node",
8 moduleNameMapper: {
9 "^../src/(.*)$": "<rootDir>/dist/$1",
10 },
11};
12