aboutsummaryrefslogtreecommitdiff
path: root/frontend/craco.config.js
blob: 79037faa31afc4ae8941cdf4163e6e8e67476197 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const CracoAlias = require('craco-alias');

module.exports = {
  plugins: [
    {
      plugin: CracoAlias,
      options: {
        source: 'tsconfig',
        baseUrl: './src',
        tsConfigPath: './tsconfig.paths.json',
      },
    },
  ],
};