feat: map shapes, image persistence, grab tool, layer rename/delete, i18n, page metadata

This commit is contained in:
AlacrisDevs
2026-02-08 23:11:09 +02:00
parent 75a2aefadb
commit f2384bceb8
125 changed files with 22605 additions and 3902 deletions

View File

@@ -19,12 +19,24 @@ export default defineConfig({
},
server: {
watch: {
// Reduce file-watcher overhead on Windows ignore heavy dirs
// Reduce file-watcher overhead on Windows - ignore heavy dirs
ignored: ['**/node_modules/**', '**/test-results/**', '**/project.inlang/cache/**', '**/.svelte-kit/**']
}
},
test: {
expect: { requireAssertions: true },
coverage: {
provider: 'v8',
include: ['src/lib/api/**/*.ts', 'src/lib/utils/logger.ts', 'src/lib/utils/permissions.ts'],
exclude: ['**/*.test.ts', '**/*.spec.ts', '**/*.d.ts', '**/types.ts', '**/index.ts', '**/google-calendar-push.ts'],
reporter: ['text', 'text-summary'],
thresholds: {
statements: 90,
branches: 85,
functions: 90,
lines: 90,
},
},
projects: [
{
extends: './vite.config.ts',