mirror of https://github.com/actions/cache.git
Prettier fixes
parent
e4884b8ff7
commit
e9b91fdc3f
@ -1,21 +1,21 @@
|
|||||||
export default {
|
export default {
|
||||||
clearMocks: true,
|
clearMocks: true,
|
||||||
moduleFileExtensions: ['js', 'ts'],
|
moduleFileExtensions: ["js", "ts"],
|
||||||
roots: ['<rootDir>/__tests__'],
|
roots: ["<rootDir>/__tests__"],
|
||||||
testEnvironment: 'node',
|
testEnvironment: "node",
|
||||||
testMatch: ['**/*.test.ts'],
|
testMatch: ["**/*.test.ts"],
|
||||||
transform: {
|
transform: {
|
||||||
'^.+\\.ts$': [
|
"^.+\\.ts$": [
|
||||||
'ts-jest',
|
"ts-jest",
|
||||||
{
|
{
|
||||||
useESM: true,
|
useESM: true,
|
||||||
diagnostics: {
|
diagnostics: {
|
||||||
ignoreCodes: [151002]
|
ignoreCodes: [151002]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
extensionsToTreatAsEsm: ['.ts'],
|
extensionsToTreatAsEsm: [".ts"],
|
||||||
transformIgnorePatterns: ['node_modules/(?!(@actions)/)'],
|
transformIgnorePatterns: ["node_modules/(?!(@actions)/)"],
|
||||||
verbose: true
|
verbose: true
|
||||||
}
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue