mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-23 23:28:41 -05:00
12 lines
328 B
TypeScript
12 lines
328 B
TypeScript
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'plugins-styles',
|
||
|
preset: '../jest.preset.js',
|
||
|
testEnvironment: 'node',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../coverage/plugins-styles',
|
||
|
};
|