Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Nov 20, 2023
1 parent 73a034e commit b48477a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>'],
moduleDirectories: [
'node_modules',
'<rootDir>',
],
moduleFileExtensions: ['js', 'ts', 'tsx', 'json'],
testPathIgnorePatterns: ['<rootDir>[/\\\\](node_modules|.next|cypress)[/\\\\]'],
transformIgnorePatterns: ['[/\\\\]node_modules[/\\\\].+\\.(ts|tsx)$']
};
preset: "ts-jest",
testEnvironment: "node",
roots: ["<rootDir>"],
moduleDirectories: ["node_modules", "<rootDir>"],
moduleFileExtensions: ["js", "ts", "tsx", "json"],
testPathIgnorePatterns: [
"<rootDir>[/\\\\](node_modules|.next|cypress)[/\\\\]",
],
transformIgnorePatterns: ["[/\\\\]node_modules[/\\\\].+\\.(ts|tsx)$"],
};

0 comments on commit b48477a

Please sign in to comment.