15 lines
260 B
TypeScript
15 lines
260 B
TypeScript
const { CracoAliasPlugin } = require('react-app-alias');
|
|
|
|
export default {
|
|
plugins: [
|
|
{
|
|
plugin: CracoAliasPlugin,
|
|
options: {
|
|
source: 'tsconfig',
|
|
baseUrl: '.',
|
|
tsConfigPath: './tsconfig.paths.json'
|
|
}
|
|
}
|
|
]
|
|
};
|