Files
jspm-registry/package-overrides/github/ajaxorg/ace-builds@1.1.6.json
T
Damien Lebrun 4626b8ab7a Add to “deps” ace editor components
Allows to import language components ahead of time, to include them in bundles:
```
import ace from 'ace';
import 'ace/mode-javascript.js';
import 'ace/theme-twilight.js';
```

It doesn’t solves the issue with workers components however.
2016-03-13 14:37:35 +00:00

18 lines
213 B
JSON

{
"main": "ace",
"format": "global",
"directories": {
"lib": "src-noconflict"
},
"shim": {
"ace": {
"exports": "ace"
},
"*": {
"deps": [
"ace/ace"
]
}
}
}