azure-resource-manager-schemas/tools/jest.config.ts

16 строки
292 B
TypeScript

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
module.exports = {
verbose: true,
moduleFileExtensions: [
"ts",
"js"
],
transform: {
'^.+\\.(ts|tsx)$': 'ts-jest'
},
testMatch: [
'**/test/**/*.test.(ts)'
],
testEnvironment: 'node',
};