Interface: BuildInfo
Defined in: base/build-info.ts:26
This interface encodes details about the build process used when compiling the app bundle. Used for internal configuration and later inspection.
Extends
Indexable
[key: string]: JSONValue
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
appName? | string | Application name, if available. | base/build-info.ts:52 |
appVersion? | string | Application version, if available. Taken from the "version" field of the project's configuration file (deno.json or package.json). | base/build-info.ts:43 |
builder | BuilderInfo | Info about the builder runtime. | base/build-info.ts:38 |
createdBy | string | The username that created the binary. | base/build-info.ts:34 |
creationDate | string | When was the binary created. | base/build-info.ts:30 |
debugBuild? | boolean | If true, indicates this is a debug build which turns off optimizations and turns on a debugging aids. | base/build-info.ts:48 |