mirror of
https://code.forgejo.org/actions/cache.git
synced 2026-06-13 08:35:37 +00:00
Prettier fixes
This commit is contained in:
parent
e4884b8ff7
commit
e9b91fdc3f
1 changed files with 20 additions and 20 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue