Files
2023WayOfTheRobot/.vscode/settings.json
T

31 lines
972 B
JSON
Raw Normal View History

2023-01-07 13:36:56 -07:00
{
"java.configuration.updateBuildConfiguration": "automatic",
2023-01-07 14:23:01 -07:00
"java.server.launchMode": "Standard",
2023-01-07 13:36:56 -07:00
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"bin/": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
2023-01-07 14:23:01 -07:00
"**/.factorypath": true,
"**/*~": true
},
"java.test.config": [
{
"name": "WPIlibUnitTests",
"workingDirectory": "${workspaceFolder}/build/jni/release",
"vmargs": [ "-Djava.library.path=${workspaceFolder}/build/jni/release" ],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release" ,
"DYLD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release"
}
},
],
2023-01-24 16:38:49 -07:00
"java.test.defaultConfig": "WPIlibUnitTests",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
2023-01-07 13:36:56 -07:00
}