mirror of
https://gitea.com/actions/download-artifact.git
synced 2026-02-02 04:14:29 +07:00
25 lines
496 B
TypeScript
25 lines
496 B
TypeScript
export default {
|
|
clearMocks: true,
|
|
moduleFileExtensions: ['js', 'ts'],
|
|
roots: ['<rootDir>'],
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.test.ts'],
|
|
transform: {
|
|
'^.+\\.ts$': [
|
|
'ts-jest',
|
|
{
|
|
useESM: true,
|
|
diagnostics: {
|
|
ignoreCodes: [151002]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
extensionsToTreatAsEsm: ['.ts'],
|
|
transformIgnorePatterns: ['node_modules/(?!(@actions)/)'],
|
|
moduleNameMapper: {
|
|
'^(\\.{1,2}/.*)\\.js$': '$1'
|
|
},
|
|
verbose: true
|
|
}
|