mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			388 B
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			13 lines
		
	
	
		
			388 B
		
	
	
	
		
			JavaScript
		
	
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
 | 
						|
module.exports = {
 | 
						|
	preset: "ts-jest",
 | 
						|
	testEnvironment: "node",
 | 
						|
	setupFiles: ["<rootDir>/test/setup-tests.ts"],
 | 
						|
	// TODO: update to app dir
 | 
						|
	moduleNameMapper: {
 | 
						|
		"@lib/(.*)": "<rootDir>/src/lib/$1",
 | 
						|
		"@routes/(.*)": "<rootDir>/src/routes/$1"
 | 
						|
	},
 | 
						|
	testPathIgnorePatterns: ["<rootDir>/node_modules/", "<rootDir>/dist/"]
 | 
						|
}
 |