diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -37,6 +37,8 @@ const webpackConfig = { | |||
37 | } | 37 | } |
38 | ``` | 38 | ``` |
39 | 39 | ||
40 | ### Options | ||
41 | |||
40 | Default options: | 42 | Default options: |
41 | 43 | ||
42 | ```javascript | 44 | ```javascript |
@@ -45,6 +47,7 @@ Default options: | |||
45 | pscArgs: {}, | 47 | pscArgs: {}, |
46 | pscBundle: 'psc-bundle', | 48 | pscBundle: 'psc-bundle', |
47 | pscBundleArgs: {}, | 49 | pscBundleArgs: {}, |
50 | pscIde: false, // instant rebuilds using psc-ide-server (experimental) | ||
48 | pscIdeColors: false, // defaults to true if psc === 'psa' | 51 | pscIdeColors: false, // defaults to true if psc === 'psa' |
49 | bundleOutput: 'output/bundle.js', | 52 | bundleOutput: 'output/bundle.js', |
50 | bundleNamespace: 'PS', | 53 | bundleNamespace: 'PS', |
@@ -61,3 +64,8 @@ Default options: | |||
61 | ], | 64 | ], |
62 | } | 65 | } |
63 | ``` | 66 | ``` |
67 | |||
68 | ### Instant rebuilds (experimental) | ||
69 | |||
70 | Experimental support for instant rebuilds using `psc-ide-server` can be enabled | ||
71 | via the `pscIde: true` option. | ||