1abc3b4cf4
- Fix import ordering (organizeImports) across multiple packages - Replace forEach with for...of loops (noForEach) - Replace non-null assertions with fallback values (noNonNullAssertion) - Add biome-ignore comments for justified noExplicitAny usages - Remove parameter properties, use explicit class properties (noParameterProperties) - Fix string concatenation to template literals (useTemplate) - Fix format issues (CSS, TypeScript) - Add tailwindDirectives CSS parser config in biome.json - Replace var with const (noVar) Result: 0 errors, 12 warnings (all cognitive complexity, acceptable)
10 lines
148 B
TypeScript
10 lines
148 B
TypeScript
import { createServer } from "vite";
|
|
|
|
const PORT = 3000;
|
|
|
|
const server = await createServer({
|
|
server: { port: PORT },
|
|
});
|
|
|
|
await server.listen();
|