mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
4e5b229308
* chore: add eslint support & some fixes * chore: eslint basic support rules & some fixes; ignore yarn-error
17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
globals: {
|
|
// work around: https://github.com/kulshekhar/ts-jest/issues/748#issuecomment-423528659
|
|
'ts-jest': {
|
|
diagnostics: {
|
|
ignoreCodes: [151001],
|
|
},
|
|
},
|
|
},
|
|
testEnvironment: 'jsdom',
|
|
transform: {
|
|
'^.+\\.vue$': 'vue-jest',
|
|
},
|
|
moduleFileExtensions: ['vue', 'json', 'ts', 'tsx', 'js', 'json'],
|
|
}
|