UNPKG

@d3vtool/strict-env

Version:

A utility to automatically load and validate environment variables from `.env` files, ensuring they're properly configured before your system starts.

20 lines (19 loc) 477 B
{ "compilerOptions": { "target": "ES2020", "moduleResolution": "node", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "outDir": "./dist", "declaration": true, "declarationDir": "./dist/types", "rootDir": "./src", "module": "ESNext", // For ESM output "lib": ["esnext"], "experimentalDecorators": true, "emitDecoratorMetadata": true, }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] }