Skip to content

Commit 26962b9

Browse files
committed
feat(typescript-dev): ✨ Update settings
1 parent 187dcd2 commit 26962b9

1 file changed

Lines changed: 21 additions & 2 deletions

File tree

src/typescript-dev/devcontainer-feature.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "typescript-dev",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"name": "TypeScript Development Environment",
55
"description": "Complete TypeScript/JavaScript development setup with Git integration, AI assistance, Markdown support, and editor enhancements.",
66
"documentationURL": "https://github.com/helpers4/devcontainer/tree/main/src/typescript-dev",
@@ -48,14 +48,33 @@
4848
"quicktype.quicktype"
4949
],
5050
"settings": {
51+
// Editor Configuration
5152
"editor.formatOnSave": true,
5253
"editor.codeActionsOnSave": {
5354
"source.fixAll": "explicit"
5455
},
56+
// TypeScript & JavaScript
5557
"javascript.preferences.useAliasesForRenames": false,
5658
"javascript.updateImportsOnFileMove.enabled": "always",
5759
"typescript.preferences.useAliasesForRenames": false,
58-
"typescript.updateImportsOnFileMove.enabled": "always"
60+
"typescript.updateImportsOnFileMove.enabled": "always",
61+
// Package Manager
62+
"npm.packageManager": "pnpm",
63+
// Markdown Configuration
64+
"markdown.extension.toc.levels": "2..6",
65+
"markdown.extension.preview.autoShowPreviewToSide": true,
66+
"[markdown]": {
67+
"editor.wordWrap": "on",
68+
"editor.rulers": [
69+
80,
70+
120
71+
],
72+
"editor.quickSuggestions": {
73+
"comments": "off",
74+
"strings": "off",
75+
"other": "off"
76+
}
77+
}
5978
}
6079
}
6180
}

0 commit comments

Comments
 (0)