Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Add list of all valid builder options #443

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,30 @@ Promise.all([builder.trace('app/first.js'), builder.trace('app/second.js')])
});
```

#### Options

A full list of options and their corresponding defaults is provided below:

```javascript
entryPoints: [],
normalize: true,
anonymous: false,
systemGlobal: 'System',
buildConfig: false,
inlinePlugins: true,
static: false,
// encodeNames' default is true for static builds:
encodeNames: undefined,
sourceMaps: false,
lowResSourceMaps: false,
// runtime's default is true for static builds:
runtime: false,
format: 'global',
globalDeps: {},
globalName: null,
minify: false
```

License
---

Expand Down