vtils

Home > types > PackageJson > NonStandardEntryPoints > esnext

PackageJson.NonStandardEntryPoints.esnext property

A module ID with untranspiled code that is the primary entry point to the program.

Signature:

esnext?:
		| string
		| {
			[moduleName: string]: string | undefined;
			main?: string;
			browser?: string;
		};