Name Message Date
📁 .claude Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 .devcontainer Create basic devcontainer 10 hours ago
📁 .vscode Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 src Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📁 static Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 .gitignore Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 .npmrc Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 CLAUDE.md Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 deno.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 deno.lock Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 eslint.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 package.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 playwright.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 README.md Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 svelte.config.js Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 tsconfig.json Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 vite.config.ts Initialize SvelteKit project with Deno, TypeScript, ESLint, and Playwright 5 hours ago
📄 playwright.config.ts
1 2 3 4 5 6 7
import { defineConfig } from '@playwright/test';

export default defineConfig({
	webServer: { command: 'npm run build && npm run preview', port: 4173 },
	testMatch: '**/*.e2e.{ts,js}'
});