- Add validatePort option (default: true) for runtime port availability checking - Add fsAccess option for configuring Vite's server.fs.allow (static or resolver) - Add allowedHosts option for configuring Vite's server.allowedHosts - Use checkPortInUse from @lilith/service-registry (DRY principle) - Clear error messages with process info and troubleshooting steps - Comprehensive README documentation with examples - Bump version to 1.1.0 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
638 B
JSON
24 lines
638 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
|
|
}
|