summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 6dbf7d5fa924aa6b53b30a54cd56cab7dcde3f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Place your settings in this file to overwrite default and user settings.
{
	"files.exclude": {
		"out": true, // set this to true to hide the "out" folder with the compiled JS files
		"node_modules": true,
		"target": true
	},
	"search.exclude": {
		"out": true // set this to false to include "out" folder in search results
	},
	"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version
	"java.externalDependencies": [
		"org.apache.commons:commons-lang3:jar:3.4:compile",
		"com.google.code.gson:gson:jar:2.7:compile",
		"org.eclipse.xtext:org.eclipse.xtext.xbase.lib:jar:2.12.0-SNAPSHOT:compile",
		"org.hamcrest:hamcrest-all:jar:1.3:test",
		"org.eclipse.xtend:org.eclipse.xtend.lib:jar:2.12.0-SNAPSHOT:compile",
		"com.fasterxml.jackson.core:jackson-databind:jar:2.5.0:compile",
		"org.hamcrest:hamcrest-core:jar:1.3:test",
		"org.eclipse.lsp4j:org.eclipse.lsp4j.generator:jar:0.2.0-SNAPSHOT:compile",
		"com.sun:tools:jar:1.8:compile",
		"org.jsoup:jsoup:jar:1.9.2:compile",
		"com.google.guava:guava:jar:18.0:compile",
		"junit:junit:jar:4.11:test",
		"org.eclipse.xtend:org.eclipse.xtend.lib.macro:jar:2.12.0-SNAPSHOT:compile",
		"com.fasterxml.jackson.core:jackson-core:jar:2.5.0:compile",
		"org.eclipse.lsp4j:org.eclipse.lsp4j:jar:0.2.0-SNAPSHOT:compile",
		"com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.5.0:compile",
		"com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.5.0:compile",
		"com.kotcrab.remark:remark:jar:1.0.0:compile",
		"com.fasterxml.jackson.core:jackson-annotations:jar:2.5.0:compile",
		"org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:jar:0.2.0-SNAPSHOT:compile"
	],
	"java.sourceDirectories": [
		"src/main/java",
		"src/test/java"
	],
	"java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home"
}