limina 0.0.6 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/config.d.ts DELETED
@@ -1,683 +0,0 @@
1
- //#region src/config.d.ts
2
- /**
3
- * Runtime label used by package boundary checks.
4
- *
5
- * Use `browser` for code that must stay free of Node.js runtime imports,
6
- * `node` for server-only output, or a custom string when a package has its own
7
- * environment naming.
8
- */
9
- type RuntimeEnvironment = "browser" | "node" | string;
10
- /**
11
- * One step in a named Limina pipeline.
12
- *
13
- * A string can be either a built-in task such as `graph:check`, or a command
14
- * split on whitespace. Use the object form when you need args, cwd, or env to
15
- * be unambiguous.
16
- */
17
- type PipelineStep = string | {
18
- /**
19
- * Arguments passed to the command.
20
- *
21
- * Prefer this over a single command string when an argument contains
22
- * spaces or when you want the config to be easy to review.
23
- */
24
- args?: string[];
25
- /**
26
- * Executable name, for example `pnpm`, `tsc`, `tsgo`, `vue-tsc`, or `vue-tsgo`.
27
- *
28
- * The command runs from the inferred workspace root unless `cwd` is set.
29
- */
30
- command: string;
31
- /**
32
- * Working directory for this step, relative to the inferred workspace root.
33
- */
34
- cwd?: string;
35
- /**
36
- * Extra environment variables for this step.
37
- *
38
- * Values are merged on top of `process.env`.
39
- */
40
- env?: Record<string, string>;
41
- /**
42
- * Marks this pipeline step as an external command.
43
- */
44
- type: "command";
45
- } | {
46
- /**
47
- * Built-in Limina task to run.
48
- */
49
- name: BuiltinTaskName;
50
- /**
51
- * Marks this pipeline step as a built-in task.
52
- */
53
- type: "task";
54
- };
55
- /**
56
- * Built-in task names understood by Limina pipelines.
57
- */
58
- type BuiltinTaskName = "checker:build" | "checker:typecheck" | "graph:check" | "nx:check" | "package:check" | "proof:check" | "release:check" | "source:check";
59
- type BuiltinCheckerPreset = "svelte-check" | "tsc" | "tsgo" | "vue-tsc" | "vue-tsgo";
60
- type CheckerPreset = BuiltinCheckerPreset;
61
- type CheckerExecutionKind = "build" | "typecheck";
62
- /**
63
- * Checker capability for one source module family.
64
- */
65
- interface CheckerConfig {
66
- /**
67
- * Built-in checker preset, such as `tsc`, `tsgo`, `vue-tsc`, `vue-tsgo`, or `svelte-check`.
68
- */
69
- preset: CheckerPreset;
70
- /**
71
- * Checker entry project used by both build and typecheck execution modes.
72
- */
73
- entry: string;
74
- }
75
- interface ResolvedCheckerConfig {
76
- entry: string;
77
- extensions: string[];
78
- name: string;
79
- preset: CheckerPreset;
80
- }
81
- /**
82
- * Explicit exception for a declared workspace package dependency that is used
83
- * through generated code, runtime strings, or another path that Knip
84
- * dependency analysis cannot see.
85
- */
86
- interface SourceKnipIgnoredDependencyConfig {
87
- /**
88
- * Declared workspace dependency package name.
89
- */
90
- dep: string;
91
- /**
92
- * Why the dependency is safe to keep even when Knip cannot prove it is
93
- * reachable from package entries, binaries, or scripts.
94
- */
95
- reason: string;
96
- }
97
- /**
98
- * Explicit exception for a source module that is owned by a package but is
99
- * intentionally not reachable from Knip's package entry graph.
100
- */
101
- interface SourceKnipIgnoredFileConfig {
102
- /**
103
- * Workspace-root-relative source module path.
104
- */
105
- file: string;
106
- /**
107
- * Why the source module is safe to keep even when Knip cannot prove it is
108
- * reachable from package entries, binaries, or scripts.
109
- */
110
- reason: string;
111
- }
112
- /**
113
- * Additional source module entries for Knip's source reachability graph.
114
- *
115
- * Default entries come from package exports, package binaries, package scripts,
116
- * and Knip-supported plugin entries. Packages without package.json#exports are
117
- * treated as application-style owners: Limina provides the full governed source
118
- * module set as the entry surface and skips unused-file coverage for that
119
- * package. Use this only for extra entry modules loaded by test runners, local
120
- * tools, or build steps that should not become package exports.
121
- */
122
- interface SourceKnipEntryConfig {
123
- /**
124
- * Workspace-root-relative file or glob patterns that Knip should treat as
125
- * additional entries for the keyed package.
126
- */
127
- files: string[];
128
- /**
129
- * Why these modules are legitimate entries even though they are not package
130
- * exports, binaries, scripts, or plugin-discovered entries.
131
- */
132
- reason: string;
133
- }
134
- /**
135
- * Explicit exception for a source module whose nearest bare tsconfig.json
136
- * cannot identify a unique ordinary typecheck owner.
137
- */
138
- interface SourceTsconfigOwnershipIgnoreEntry {
139
- /**
140
- * Named package owner from package.json.
141
- */
142
- owner: string;
143
- /**
144
- * Workspace-root-relative file or glob patterns inside the owner package.
145
- */
146
- files: string[];
147
- /**
148
- * Why these modules may skip nearest-tsconfig ownership enforcement.
149
- */
150
- reason: string;
151
- }
152
- /**
153
- * Nearest bare tsconfig ownership settings.
154
- */
155
- interface SourceTsconfigOwnershipConfig {
156
- /**
157
- * Package-owned source modules intentionally exempted from nearest bare
158
- * tsconfig ownership enforcement.
159
- */
160
- ignore?: SourceTsconfigOwnershipIgnoreEntry[];
161
- }
162
- /**
163
- * Package-level Knip source analysis config interpreted by Limina.
164
- */
165
- interface SourceKnipWorkspaceConfig {
166
- /**
167
- * Additional package-owned source modules Knip should treat as reachable
168
- * roots. Limina disables Knip's implicit index/main/cli entry guessing by
169
- * default; package manifest entries, scripts, plugin-discovered entries, and
170
- * Limina virtual entries remain enabled.
171
- */
172
- entry?: SourceKnipEntryConfig[];
173
- /**
174
- * Declared workspace dependencies intentionally not visible through Knip's
175
- * entry-reachable dependency graph.
176
- */
177
- ignoreDependencies?: SourceKnipIgnoredDependencyConfig[];
178
- /**
179
- * Package-owned source modules intentionally not visible through Knip's
180
- * entry-reachable file graph.
181
- */
182
- ignoreFiles?: SourceKnipIgnoredFileConfig[];
183
- }
184
- /**
185
- * Knip-backed source analysis config interpreted by Limina.
186
- */
187
- interface SourceKnipCheckConfig {
188
- /**
189
- * Package-specific Knip source analysis config keyed by workspace package
190
- * name, such as "@example/app". Unknown package names fail source checks.
191
- */
192
- workspaces?: Record<string, SourceKnipWorkspaceConfig>;
193
- }
194
- /**
195
- * Source-owned dependency usage check settings.
196
- */
197
- interface SourceCheckConfig {
198
- /**
199
- * Knip-backed unused dependency and unused source module analysis.
200
- *
201
- * `true` or omitted uses Limina's generated default config, `false` skips
202
- * these Knip-backed checks, and an object configures Limina's semantic Knip
203
- * source rules by workspace package name.
204
- *
205
- * @default true
206
- */
207
- knip?: boolean | SourceKnipCheckConfig;
208
- /**
209
- * Exceptions for source modules whose nearest bare tsconfig.json cannot
210
- * resolve a unique ordinary typecheck owner.
211
- */
212
- tsconfigOwnership?: SourceTsconfigOwnershipConfig;
213
- }
214
- /**
215
- * Global source boundary used by proof checks.
216
- */
217
- interface SourceBoundaryConfig {
218
- /**
219
- * Glob patterns for source files that Limina should govern.
220
- *
221
- * When omitted, Limina uses TypeScript/JSON source defaults and adds
222
- * framework extensions from configured checkers, such as `.vue` or
223
- * `.svelte`.
224
- */
225
- include?: string[];
226
- /**
227
- * Glob patterns or directory shorthands to omit from source governance.
228
- *
229
- * When omitted, Limina reads the workspace root `.gitignore` and combines it
230
- * with the built-in excludes below.
231
- *
232
- * @default: [
233
- * "nx.json",
234
- * "project.json",
235
- * "tsconfig.json",
236
- * "**\/tsconfig.*.json",
237
- * "dist",
238
- * ".nx",
239
- * ".git",
240
- * ".tsbuild",
241
- * "coverage",
242
- * "node_modules",
243
- * ]
244
- */
245
- exclude?: string[];
246
- }
247
- /**
248
- * Shared project facts used by graph, proof, and related checks.
249
- */
250
- interface SharedLiminaConfig {
251
- /**
252
- * Checker capabilities shared by graph, proof, and tsc tasks.
253
- */
254
- checkers?: Record<string, CheckerConfig>;
255
- /**
256
- * Global source file boundary used by proof checks.
257
- */
258
- source?: SourceBoundaryConfig;
259
- }
260
- /**
261
- * Declaration leaf boundary denied to projects with a matching Limina label.
262
- */
263
- interface GraphRuleRefDenyEntry {
264
- /**
265
- * Target `tsconfig*.dts.json` path, relative to the inferred workspace root.
266
- */
267
- path: string;
268
- /**
269
- * Human-readable explanation shown when the rule fails.
270
- */
271
- reason: string;
272
- }
273
- /**
274
- * Declaration leaf boundary explicitly allowed for projects with a matching
275
- * Limina graph rule when static import analysis cannot prove the edge.
276
- */
277
- interface GraphRuleRefAllowEntry {
278
- /**
279
- * Target `tsconfig*.dts.json` path, relative to the inferred workspace root.
280
- */
281
- path: string;
282
- /**
283
- * Human-readable explanation documenting why this extra reference is safe.
284
- */
285
- reason: string;
286
- }
287
- /**
288
- * Dependency denied to projects with a matching Limina label.
289
- */
290
- interface GraphRuleDepDenyEntry {
291
- /**
292
- * Target package root, package.json imports specifier, or Node builtin name.
293
- *
294
- * Examples: `@acme/internal`, `zod`, `#internal/*`, `fs`, `node:fs`,
295
- * or `node:*`.
296
- */
297
- name: string;
298
- /**
299
- * Human-readable explanation shown when the rule fails.
300
- */
301
- reason: string;
302
- }
303
- /**
304
- * Deny lists for a Limina graph label.
305
- */
306
- interface GraphRuleDenyConfig {
307
- /**
308
- * Declaration leaf boundaries that matching projects must not reference or import.
309
- */
310
- refs?: GraphRuleRefDenyEntry[];
311
- /**
312
- * Packages, package imports, and Node builtins that matching projects must
313
- * not reference or import.
314
- */
315
- deps?: GraphRuleDepDenyEntry[];
316
- }
317
- /**
318
- * Allow lists for a Limina graph label.
319
- */
320
- interface GraphRuleAllowConfig {
321
- /**
322
- * Extra declaration leaf boundaries that matching projects may keep even
323
- * when static import analysis cannot prove them.
324
- */
325
- refs?: GraphRuleRefAllowEntry[];
326
- }
327
- /**
328
- * Package-level graph governance rule keyed by a label declared in
329
- * `tsconfig*.dts.json`.
330
- */
331
- interface GraphRule {
332
- /**
333
- * Allowed graph boundaries that static analysis cannot prove.
334
- */
335
- allow?: GraphRuleAllowConfig;
336
- /**
337
- * Denied graph boundaries and workspace package dependencies.
338
- */
339
- deny?: GraphRuleDenyConfig;
340
- }
341
- /**
342
- * TypeScript project graph policy.
343
- */
344
- interface GraphConditionDomain {
345
- /**
346
- * Human-readable domain name used in graph check reports.
347
- */
348
- name: string;
349
- /**
350
- * Domain entry `tsconfig*.dts.json` path, relative to the inferred workspace root.
351
- */
352
- entry: string;
353
- /**
354
- * Bundler/package condition names expected for this declaration reference tree.
355
- */
356
- customConditions: string[];
357
- }
358
- interface GraphConfig {
359
- /**
360
- * Real declaration resolution domains whose project references should share
361
- * the configured custom conditions.
362
- */
363
- conditionDomains?: GraphConditionDomain[];
364
- /**
365
- * Label-based package and build-boundary access rules.
366
- *
367
- * A `tsconfig*.dts.json` can opt into one or more rules by declaring
368
- * `liminaOptions.graphRules`.
369
- */
370
- rules?: Record<string, GraphRule>;
371
- }
372
- /**
373
- * Explicit exception for a source file that is intentionally not covered by the
374
- * normal proof rules.
375
- */
376
- interface ProofAllowlistEntry {
377
- /**
378
- * File path to allow, relative to the inferred workspace root.
379
- */
380
- file: string;
381
- /**
382
- * Why this file is safe to exclude from normal proof coverage.
383
- */
384
- reason: string;
385
- }
386
- /**
387
- * Typecheck coverage proof settings.
388
- */
389
- interface ProofConfig {
390
- /**
391
- * Intentional file-level exceptions.
392
- */
393
- allowlist?: ProofAllowlistEntry[];
394
- }
395
- /**
396
- * Package check tools that can run against a built package output.
397
- */
398
- type PackageCheckTool = "attw" | "boundary" | "publint";
399
- /**
400
- * CLI package check tool selection.
401
- */
402
- type PackageCheckToolSelection = PackageCheckTool | "all";
403
- /**
404
- * Are The Types Wrong profile used for package type resolution checks.
405
- */
406
- type PackageAttwProfile = "esm-only" | "node16" | "strict";
407
- /**
408
- * publint package check settings.
409
- */
410
- type PackagePublintLevel = "error" | "suggestion" | "warning";
411
- interface PackagePublintCheckConfig {
412
- /**
413
- * Minimum publint message level to report.
414
- */
415
- level?: PackagePublintLevel;
416
- /**
417
- * Whether publint should run in strict mode.
418
- *
419
- * @default true
420
- */
421
- strict?: boolean;
422
- }
423
- /**
424
- * Are The Types Wrong package check settings.
425
- */
426
- type PackageAttwLevel = "error" | "warn";
427
- type PackageAttwIgnoreRule = "cjs-only-exports-default" | "cjs-resolves-to-esm" | "fallback-condition" | "false-cjs" | "false-esm" | "false-export-default" | "internal-resolution-error" | "missing-export-equals" | "named-exports" | "no-resolution" | "unexpected-module-syntax" | "untyped-resolution" | (string & {});
428
- interface PackageAttwCheckConfig {
429
- /**
430
- * Exhaustive list of package entrypoints to check. The package root is ".".
431
- */
432
- entrypoints?: string[];
433
- /**
434
- * Whether ATTW should consider all published files as entrypoints when no
435
- * other entrypoints are detected or configured.
436
- */
437
- entrypointsLegacy?: boolean;
438
- /**
439
- * Entrypoints to exclude from checking.
440
- */
441
- excludeEntrypoints?: (string | RegExp)[];
442
- /**
443
- * Problem rule names to ignore.
444
- */
445
- ignoreRules?: PackageAttwIgnoreRule[];
446
- /**
447
- * Entrypoints to check in addition to automatically discovered ones.
448
- */
449
- includeEntrypoints?: string[];
450
- /**
451
- * Whether ATTW findings fail the package check or are logged as warnings.
452
- *
453
- * @default "error"
454
- */
455
- level?: PackageAttwLevel;
456
- /**
457
- * Problem profile to enforce.
458
- *
459
- * `esm-only` ignores CJS resolution failures for pure ESM packages.
460
- *
461
- * @default "esm-only"
462
- */
463
- profile?: PackageAttwProfile;
464
- }
465
- /**
466
- * Built package import boundary settings.
467
- */
468
- interface PackageBoundaryCheckConfig {
469
- /**
470
- * Runtime environment for each emitted file.
471
- *
472
- * Use a string when the whole package has one environment, or a function when
473
- * different files have different environments.
474
- */
475
- environment?: RuntimeEnvironment | ((relativeFilePath: string) => RuntimeEnvironment);
476
- /**
477
- * External package imports that are intentionally allowed even when they are
478
- * not listed in the built package manifest.
479
- */
480
- ignoredExternalPackages?: string[];
481
- }
482
- /**
483
- * One published package output entry.
484
- */
485
- interface PackageEntry {
486
- /**
487
- * Package name used by CLI filters, reports, and cwd release matching.
488
- */
489
- name: string;
490
- /**
491
- * Built package directory to scan, relative to the inferred workspace root.
492
- */
493
- outDir: string;
494
- /**
495
- * Package check tools enabled for this entry.
496
- *
497
- * @default ["publint", "attw", "boundary"]
498
- */
499
- checks?: PackageCheckTool[];
500
- /**
501
- * publint settings for this package output.
502
- */
503
- publint?: boolean | PackagePublintCheckConfig;
504
- /**
505
- * Are The Types Wrong settings for this package output.
506
- */
507
- attw?: boolean | PackageAttwCheckConfig;
508
- /**
509
- * Built package import boundary settings.
510
- */
511
- boundary?: PackageBoundaryCheckConfig;
512
- }
513
- /**
514
- * Published package settings.
515
- */
516
- interface PackageConfig {
517
- /**
518
- * Built package outputs to check.
519
- */
520
- entries?: PackageEntry[];
521
- }
522
- interface ReleaseContentHashConfigArgs {
523
- /**
524
- * Package currently being release-checked.
525
- */
526
- importerName: string;
527
- /**
528
- * Workspace dependency package being compared against npm.
529
- */
530
- dependencyName: string;
531
- }
532
- /**
533
- * Release dependency artifact content hash settings.
534
- */
535
- interface ReleaseContentHashConfig {
536
- /**
537
- * npm dist-tag used as the online baseline for dependency package output.
538
- *
539
- * @default "latest"
540
- */
541
- baselineTag?: string | ((args: ReleaseContentHashConfigArgs) => string);
542
- /**
543
- * Use Limina's built-in dependency artifact ignore set as a fallback when
544
- * `ignore` is omitted or returns `undefined`.
545
- *
546
- * @default false
547
- */
548
- builtinIgnore?: boolean;
549
- /**
550
- * Additional package-relative glob patterns ignored by dependency artifact
551
- * content hashes.
552
- */
553
- ignore?: string[] | ((args: ReleaseContentHashConfigArgs) => string[] | undefined);
554
- }
555
- /**
556
- * Release check settings.
557
- */
558
- interface ReleaseConfig {
559
- /**
560
- * Dependency artifact content hash comparison settings.
561
- */
562
- contentHash?: ReleaseContentHashConfig;
563
- }
564
- /**
565
- * Limina user config.
566
- */
567
- interface LiminaConfig {
568
- /**
569
- * Enable strict workspace modeling rules.
570
- *
571
- * Strict mode keeps the existing command surface but makes graph, proof,
572
- * source, package, and release checks enforce the complete Limina workspace
573
- * model.
574
- *
575
- * @default false
576
- */
577
- strict?: boolean;
578
- /**
579
- * Shared project facts, such as checker entries and source boundary.
580
- */
581
- config?: SharedLiminaConfig;
582
- /**
583
- * TypeScript project graph and architecture rules.
584
- */
585
- graph?: GraphConfig;
586
- /**
587
- * Rules for checking built package outputs before publishing.
588
- */
589
- package?: PackageConfig;
590
- /**
591
- * Named command pipelines runnable through `limina check <name>`.
592
- */
593
- pipelines?: Record<string, PipelineStep[]>;
594
- /**
595
- * Rules that prove source files are covered by graph or checker entries.
596
- */
597
- proof?: ProofConfig;
598
- /**
599
- * Rules for release dependency artifact comparisons.
600
- */
601
- release?: ReleaseConfig;
602
- /**
603
- * Rules for source-owned dependency usage checks.
604
- */
605
- source?: SourceCheckConfig;
606
- }
607
- /**
608
- * CLI command currently loading the config.
609
- */
610
- type LiminaCommand = "check" | "graph" | "nx" | "package" | "proof" | "release" | "source" | (string & {});
611
- /**
612
- * Environment passed to function-style configs.
613
- */
614
- interface LiminaConfigEnv {
615
- /**
616
- * CLI command family, such as `check`, `graph`, or `package`.
617
- */
618
- command: LiminaCommand;
619
- /**
620
- * Mode passed through `--mode`.
621
- *
622
- * Defaults to `process.env.NODE_ENV`, then `default`.
623
- */
624
- mode: string;
625
- }
626
- type LiminaConfigFnObject = (env: LiminaConfigEnv) => LiminaConfig;
627
- type LiminaConfigFnPromise = (env: LiminaConfigEnv) => Promise<LiminaConfig>;
628
- type LiminaConfigFn = (env: LiminaConfigEnv) => LiminaConfig | Promise<LiminaConfig>;
629
- type LiminaConfigExport = LiminaConfig | Promise<LiminaConfig> | LiminaConfigFnObject | LiminaConfigFnPromise | LiminaConfigFn;
630
- interface ResolvedLiminaConfig extends LiminaConfig {
631
- /**
632
- * Absolute path to the loaded config file.
633
- */
634
- configPath: string;
635
- /**
636
- * Absolute workspace root inferred from `cwd` and its parent directories.
637
- */
638
- rootDir: string;
639
- }
640
- /**
641
- * Type helper for limina.config.mjs.
642
- *
643
- * Accepts a direct config object, a Promise, or a function that receives the
644
- * current {@link LiminaConfigEnv}.
645
- */
646
- declare function defineConfig(config: LiminaConfig): LiminaConfig;
647
- declare function defineConfig(config: Promise<LiminaConfig>): Promise<LiminaConfig>;
648
- declare function defineConfig(config: LiminaConfigFnObject): LiminaConfigFnObject;
649
- declare function defineConfig(config: LiminaConfigFnPromise): LiminaConfigFnPromise;
650
- declare function defineConfig(config: LiminaConfigFn): LiminaConfigFn;
651
- declare function validateLiminaConfig(config: LiminaConfig): void;
652
- declare function isStrictConfig(config: Pick<LiminaConfig, "strict">): boolean;
653
- declare function getActiveCheckers(config: LiminaConfig): ResolvedCheckerConfig[];
654
- declare function getActiveCheckerExtensions(config: LiminaConfig): string[];
655
- interface LoadConfigOptions {
656
- /**
657
- * Command family to expose to function-style configs.
658
- */
659
- command?: LiminaCommand;
660
- /**
661
- * Config file path, resolved from `cwd`. When omitted, Limina searches for
662
- * the nearest `limina.config.mjs` from `cwd` upward to the inferred pnpm
663
- * workspace root.
664
- *
665
- * @default nearest "limina.config.mjs" in `cwd` or workspace parents
666
- */
667
- configPath?: string;
668
- /**
669
- * Directory used to resolve `configPath`.
670
- *
671
- * @default process.cwd()
672
- */
673
- cwd?: string;
674
- /**
675
- * Mode exposed to function-style configs.
676
- *
677
- * @default process.env.NODE_ENV ?? "default"
678
- */
679
- mode?: string;
680
- }
681
- declare function loadConfig(options?: LoadConfigOptions): Promise<ResolvedLiminaConfig>;
682
- //#endregion
683
- export { BuiltinCheckerPreset, BuiltinTaskName, CheckerConfig, CheckerExecutionKind, CheckerPreset, GraphConditionDomain, GraphConfig, GraphRule, GraphRuleAllowConfig, GraphRuleDenyConfig, GraphRuleDepDenyEntry, GraphRuleRefAllowEntry, GraphRuleRefDenyEntry, LiminaCommand, LiminaConfig, LiminaConfigEnv, LiminaConfigExport, LiminaConfigFn, LiminaConfigFnObject, LiminaConfigFnPromise, LoadConfigOptions, PackageAttwCheckConfig, PackageAttwIgnoreRule, PackageAttwLevel, PackageAttwProfile, PackageBoundaryCheckConfig, PackageCheckTool, PackageCheckToolSelection, PackageConfig, PackageEntry, PackagePublintCheckConfig, PackagePublintLevel, PipelineStep, ProofAllowlistEntry, ProofConfig, ReleaseConfig, ReleaseContentHashConfig, ReleaseContentHashConfigArgs, ResolvedCheckerConfig, ResolvedLiminaConfig, RuntimeEnvironment, SharedLiminaConfig, SourceBoundaryConfig, SourceCheckConfig, SourceKnipCheckConfig, SourceKnipEntryConfig, SourceKnipIgnoredDependencyConfig, SourceKnipIgnoredFileConfig, SourceKnipWorkspaceConfig, SourceTsconfigOwnershipConfig, SourceTsconfigOwnershipIgnoreEntry, defineConfig, getActiveCheckerExtensions, getActiveCheckers, isStrictConfig, loadConfig, validateLiminaConfig };
package/config.js DELETED
@@ -1,3 +0,0 @@
1
- import { a as loadConfig, i as isStrictConfig, n as getActiveCheckerExtensions, o as validateLiminaConfig, r as getActiveCheckers, t as defineConfig } from "./chunks/dep-Ce6cDHmw.js";
2
-
3
- export { defineConfig, getActiveCheckerExtensions, getActiveCheckers, isStrictConfig, loadConfig, validateLiminaConfig };