emoticon/craco.config.ts
2025-03-25 17:30:21 +09:00

15 lines
260 B
TypeScript

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