mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
Enabled sourcemaps for production.
This commit is contained in:
parent
27d1304c6c
commit
e71767cc1f
1 changed files with 4 additions and 1 deletions
|
@ -5,10 +5,13 @@ startsWith = (string, substring) ->
|
|||
exports.config =
|
||||
paths:
|
||||
public: 'public'
|
||||
watched: ['app', 'vendor', 'test/app', 'test/demo']
|
||||
watched: ['app', 'vendor', 'test/app', 'test/demo']
|
||||
conventions:
|
||||
ignored: (path) -> startsWith(sysPath.basename(path), '_')
|
||||
sourceMaps: true
|
||||
overrides:
|
||||
production:
|
||||
sourceMaps: true
|
||||
files:
|
||||
javascripts:
|
||||
defaultExtension: 'coffee'
|
||||
|
|
Loading…
Reference in a new issue