Prettier fixes

This commit is contained in:
Joshua Brooks
2026-06-11 16:23:52 +00:00
parent e4884b8ff7
commit e9b91fdc3f

View File

@@ -1,12 +1,12 @@
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: {
@@ -15,7 +15,7 @@ export default {
} }
] ]
}, },
extensionsToTreatAsEsm: ['.ts'], extensionsToTreatAsEsm: [".ts"],
transformIgnorePatterns: ['node_modules/(?!(@actions)/)'], transformIgnorePatterns: ["node_modules/(?!(@actions)/)"],
verbose: true verbose: true
} };