53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
| 	/*
 | |
| 		The directory containing your coffee binary. Usually
 | |
| 		/usr/local/bin.
 | |
| 	*/
 | |
| 	"binDir": "/usr/local/bin"
 | |
| 
 | |
| 	/*
 | |
| 		Compile without the top-level function wrapper (coffee -b).
 | |
| 	*/
 | |
| 
 | |
| ,	"noWrapper": true
 | |
| 
 | |
| 	/*
 | |
| 		Enable or disable refresh the compiled Output on Save.
 | |
| 		Only available for watch mode.
 | |
| 	*/
 | |
| ,	"watchOnSave": true
 | |
| 	/*
 | |
| 		Enable refreshing compiled JS when CoffeeScript is modified.
 | |
| 
 | |
| 		Put false to disable
 | |
| 		Put a number of seconds to delay the refresh
 | |
| 	*/
 | |
| ,	"watchOnModified": 0.5
 | |
| 	/*
 | |
| 		Enable Compiling on save. It will compile into the same folder.
 | |
| 	*/
 | |
| ,	"compileOnSave": true
 | |
| 	/*
 | |
| 		## Enable outputting the results of the compiled coffeescript in a panel
 | |
| 	*/
 | |
| ,	"showOutputOnSave": false
 | |
| 	/*
 | |
| 		## Enable compiling to a specific directory.
 | |
| 		#### Description
 | |
| 
 | |
| 		if it is a string like 'some/directory' then `-o some/directory` will be added to `coffee` compiler. 
 | |
| 		if it is false or not string then it will compile your `script.coffee` to the directory it is in.
 | |
| 
 | |
| 		#### Example:
 | |
| 		Directory is relative to the file you are editting if specified such as
 | |
| 			compileDir": "out"
 | |
| 		Directory is absolute if specified such as
 | |
| 			compileDir": "/home/logan/Desktop/out"
 | |
| 		
 | |
| 	*/
 | |
| ,	"compileDir": false
 | |
| 
 | |
| 
 | |
| 
 | |
| }
 |