vehicle-monitor/build/resolve.ts

11 lines
175 B
TypeScript
Raw Normal View History

2025-02-26 16:31:59 +08:00
import { pathResolve } from './utils';
2025-02-24 18:23:33 +08:00
export const resolve = () => {
2025-02-25 23:14:50 +08:00
return {
alias: {
2025-02-26 16:31:59 +08:00
'@': pathResolve('../src'),
'@build': pathResolve(),
2025-02-25 23:14:50 +08:00
},
};
2025-02-24 18:23:33 +08:00
};