diff options
Diffstat (limited to 'jest.config.js')
| -rw-r--r-- | jest.config.js | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/jest.config.js b/jest.config.js index 6b808fc..0e21d6b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,24 +1,24 @@ /** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ export default { - preset: "ts-jest", - transform: { - "^.+\\.svelte$": [ - "svelte-jester", - { - "preprocess": true - } - ] - }, - moduleNameMapper: { - "^\\$lib(.*)$": "<rootDir>/src/lib$1", - "^\\$app(.*)$": [".svelte/dev/runtime/app/*", ".svelte/build/runtime/app/*"] - }, - moduleFileExtensions: ["ts", "js", "svelte"], - globals: { - 'ts-jest': { - diagnostics: { - ignoreCodes: [ 'TS151001' ], - }, - }, - }, -} + preset: 'ts-jest', + transform: { + '^.+\\.svelte$': [ + 'svelte-jester', + { + preprocess: true + } + ] + }, + moduleNameMapper: { + '^\\$lib(.*)$': '<rootDir>/src/lib$1', + '^\\$app(.*)$': ['.svelte/dev/runtime/app/*', '.svelte/build/runtime/app/*'] + }, + moduleFileExtensions: ['ts', 'js', 'svelte'], + globals: { + 'ts-jest': { + diagnostics: { + ignoreCodes: ['TS151001'] + } + } + } +}; |