16 lines
537 B
TypeScript
16 lines
537 B
TypeScript
/* eslint-disable */
|
|
module.exports = {
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
|
globals: {},
|
|
displayName: 'cli',
|
|
preset: '../../jest.preset.js',
|
|
modulePathIgnorePatterns: ['<rootDir>/dist/'],
|
|
moduleNameMapper: {
|
|
// Map Angular schematics to node_modules
|
|
'^@schematics/angular/collection.json$':
|
|
'<rootDir>/../../node_modules/@schematics/angular/collection.json',
|
|
'^@angular-devkit/schematics/tools$':
|
|
'<rootDir>/../../node_modules/@angular-devkit/schematics/tools/index.js',
|
|
},
|
|
};
|