/
githubmirror
/
TypeScript
Обзор
Документация
Войти
/
githubmirror
/
TypeScript
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.vscode/settings.template.json
47 строк
2 KB
Jake Bailey
Use explicit extensions for imports within src (#58421)
07 май 2024, 03:07
Не верифицирован
07 май 2024, 03:07
16beff1
Код
Авторство
О чём код?
// Rename this file 'settings.json' or merge its // contents into your existing settings. { // To use the locally built compiler, after 'npm run build': // "typescript.tsdk": "built/local" // Enables dprint formatting on all supported files. We explicitly list // languages here to ensure that these are more specific than those in a // user's settings.json so take precedence. "[typescript][typescriptreact][javascript][javascriptreact][json][jsonc][yaml][github-actions-workflow]": { "editor.defaultFormatter": "dprint.dprint", "editor.formatOnSave": true }, // To ignore commits listed in .git-blame-ignore-revs in GitLens: "gitlens.advanced.blame.customArguments": [ "--ignore-revs-file", ".git-blame-ignore-revs" ], "javascript.preferences.importModuleSpecifierEnding": "js", "typescript.preferences.importModuleSpecifierEnding": "js", // Match dprint in organize/auto-imports. "typescript.unstable": { "organizeImportsCollation": "unicode", "organizeImportsCaseFirst": "upper", "organizeImportsIgnoreCase": false, "organizeImportsNumericCollation": true, "organizeImportsTypeOrder": "inline" }, "javascript.unstable": { "organizeImportsCollation": "unicode", "organizeImportsCaseFirst": "upper", "organizeImportsIgnoreCase": false, "organizeImportsNumericCollation": true, "organizeImportsTypeOrder": "inline" }, // These options search the repo recursively and slow down // the build task menu. We define our own in tasks.json. "typescript.tsc.autoDetect": "off", "npm.autoDetect": "off", "grunt.autoDetect": "off", "jake.autoDetect": "off", "gulp.autoDetect": "off" }