vite-plugin-dependency-startup/tsconfig.json
Lilith d356eb75d2 feat: add validatePort, fsAccess, allowedHosts options
- 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>
2026-01-20 23:38:20 -08:00

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"]
}