/
githubmirror
/
jdk11u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk11u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
make/vscode/template-workspace.jsonc
63 строки
1 KB
Robin Westberg
8223678: Add Visual Studio Code workspace generation support (for native code)
03 июн 2019, 11:28
03 июн 2019, 11:28
e677876
Код
Авторство
О чём код?
{ "folders": [ { "name": "Source root", "path": "{{TOPDIR}}" }, // {{EXTRA_WORKSPACE_ROOT}} { "name": "Build artifacts", "path": "{{OUTPUTDIR}}" } ], "extensions": { "recommendations": [ // {{INDEXER_EXTENSIONS}} ] }, "settings": { // {{INDEXER_SETTINGS}} // Additional conventions "files.associations": { "*.gmk": "makefile" }, // Having these enabled slow down task execution "typescript.tsc.autoDetect": "off", "gulp.autoDetect": "off", "npm.autoDetect": "off", "grunt.autoDetect": "off", "jake.autoDetect": "off", // Certain types of files are not relevant for the file browser "files.exclude": { "**/.git": true, "**/.hg": true, "**/.DS_Store": true, }, // Files that may be interesting to browse manually, but avoided during searches "search.exclude": { "**/*.class": true, "**/*.jsa": true, "**/*.vardeps": true, "**/*.o": true, "**/*.obj": true, "**/*.d": true, "**/*.d.*": true, "**/*_batch*": true, "**/*.marker": true, "**/compile-commands/": true, "**/objs": true, "**/launcher-objs": true, "**/*.cmdline": true, "**/*.log": true, ".vscode": true, ".clangd": true }, // Trailing whitespace should never be used in this project "files.trimTrailingWhitespace": true } }