-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcraco.config.js
50 lines (49 loc) · 1.25 KB
/
craco.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const path = require(`path`);
module.exports = {
webpack: {
alias: {
'@': path.resolve(__dirname, 'src'),
},
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
},
style: {
sass: {
loaderOptions: {
additionalData: `
@import "@/assets/styles/_index.scss";
`,
},
},
},
jest: {
preset: 'ts-jest',
collectCoverage: true,
collectCoverageFrom: ['src/**/*.ts', 'src/**/*.tsx', '!src/index.tsx'],
coverageReporters: ['text'],
moduleNameMapper: {
'^@/(.+)': '<rootDir>/src/$1',
'\\.(css|scss)$': '<rootDir>/__mocks__/style-mock.ts',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/__mocks__/file-mock.ts',
i18next: '<rootDir>/__mocks__/i18next-mock.ts',
'react-i18next': '<rootDir>/__mocks__/react-i18next-mock.ts',
nanoid: '<rootDir>/_mocks__/nanoid-mock.ts',
},
transform: {
'^.+\\.ts?$': 'ts-jest',
},
configure: {
roots: ['<rootDir>/src'],
testMatch: ['<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}'],
},
testPathIgnorePatterns: ['<rootDir>/cypress'],
},
};