2024-01-13 16:07:33 -05:00
|
|
|
import { watchAndCompileSass, transpileTypeScript } from 'file:///home/matt/.nix/devices/wim/config/ags/js/utils.js';
|
2023-11-27 15:50:20 -05:00
|
|
|
|
2024-01-13 16:07:33 -05:00
|
|
|
watchAndCompileSass();
|
2023-11-27 15:50:20 -05:00
|
|
|
|
2024-01-13 16:07:33 -05:00
|
|
|
// Compile wim's config since that is where the big boy code is
|
|
|
|
// I have it symlinked in the git repo so TS server can see it
|
|
|
|
await transpileTypeScript(
|
|
|
|
'/home/matt/.nix/devices/wim/config/ags',
|
|
|
|
'/tmp/ags/wim',
|
|
|
|
);
|
|
|
|
export default (await import(await transpileTypeScript())).default;
|