eas-config-ts
v1.0.7
Published
A TypeScript-based configuration generator for EAS (Expo Application Services).
Readme
eas-config-ts
A TypeScript-based configuration generator for EAS (Expo Application Services).

Installation
pnpm add -D eas-config-tsUsage
- Create an
eas.config.tsfile in your project root with your EAS configuration.
import { defineEasConfig } from "eas-config-ts";
// necessary if you want to use dotenv
import "dotenv/config";
// you can write type-safe config
export default defineEasConfig({
build: {
development: {
// process.env can be used!!
env: process.env,
},
},
});- Run the following command to generate
eas.json
npx gen-eas-config