@elizaos/config 1.6.5-alpha.2 → 1.6.5-alpha.20

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.
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Standard configuration exports for ElizaOS packages
3
+ * Provides centralized access to all base configurations
4
+ */
5
+ export { default as tsConfigBase } from './typescript/tsconfig.base.json';
6
+ export { default as tsConfigPlugin } from './typescript/tsconfig.plugin.json';
7
+ export { default as tsConfigFrontend } from './typescript/tsconfig.frontend.json';
8
+ export { default as tsConfigTest } from './typescript/tsconfig.test.json';
9
+ export { default as eslintConfigPlugin } from './eslint/eslint.config.plugin.js';
10
+ export { default as eslintConfigFrontend } from './eslint/eslint.config.frontend.js';
11
+ export { baseConfig as eslintBaseConfig, testOverrides, standardIgnores, } from './eslint/eslint.config.base.js';
12
+ export { default as prettierConfig } from './prettier/prettier.config.js';
13
+ export declare const configPaths: {
14
+ typescript: {
15
+ base: string;
16
+ plugin: string;
17
+ frontend: string;
18
+ test: string;
19
+ };
20
+ eslint: {
21
+ plugin: string;
22
+ frontend: string;
23
+ };
24
+ prettier: string;
25
+ };