summaryrefslogtreecommitdiffstats
path: root/phel-config.php
blob: e653adf2e0f1328899acdb2d13a161bb6612e1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

use Phel\Config\PhelConfig;
use Phel\Config\ProjectLayout;

return PhelConfig::forProject(ProjectLayout::Flat)
    ->withMainPhelNamespace('lezer.app')
    ->withIgnoreWhenBuilding(['local.phel'])
    ->withNoCacheWhenBuilding(['lezer.app'])
    ->withOptimizationLevel(2)
;