Nuxt/jest.config.js

11 lines
167 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'\\.[jt]sx?$': 'ts-jest'
},
testPathIgnorePatterns: [
'.output/.*'
]
}