mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +00:00
16 lines
314 B
JavaScript
16 lines
314 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
verbose: true,
|
|
transform: {
|
|
'^.+\\.svelte$': 'svelte-jester',
|
|
},
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/tests/**/*.test.ts'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tests/tsconfig.json',
|
|
},
|
|
},
|
|
};
|