mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-21 08:06:40 +02:00
Re-activate presi (presentation tool) and storage (cloud storage) apps that were previously archived for context reduction. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
// @ts-check
|
|
import {
|
|
baseConfig,
|
|
typescriptConfig,
|
|
svelteConfig,
|
|
prettierConfig,
|
|
} from '@manacore/eslint-config';
|
|
|
|
export default [
|
|
{
|
|
ignores: ['dist/**', '.svelte-kit/**', 'node_modules/**'],
|
|
},
|
|
...baseConfig,
|
|
...typescriptConfig,
|
|
...svelteConfig,
|
|
...prettierConfig,
|
|
];
|