Skip to content

Commit c9fdfeb

Browse files
committed
fix: added npm script to local installation of package
2 parents f1cb471 + c9c203c commit c9fdfeb

File tree

3 files changed

+301
-182
lines changed

3 files changed

+301
-182
lines changed

.vscode/settings.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"titleBar.activeForeground": "#15202b",
4+
"titleBar.inactiveForeground": "#15202b99",
5+
"titleBar.activeBackground": "#a1a4ae",
6+
"titleBar.inactiveBackground": "#5B80EA99",
7+
"activityBar.activeBackground": "#122738",
8+
"activityBar.activeBorder": "#ffffff",
9+
"activityBar.background": "#122738",
10+
"activityBar.foreground": "#ffffff",
11+
"activityBar.inactiveForeground": "#ffffff99",
12+
"activityBarBadge.background": "#FFC600",
13+
"activityBarBadge.foreground": "#000000",
14+
"statusBar.background": "#15252D",
15+
"statusBar.border": "#15252D",
16+
"statusBar.foreground": "#ffffff",
17+
"statusBarItem.hoverBackground": "#27a499",
18+
"titleBar.border": "#5B80EA"
19+
},
20+
"typescript.preferences.importModuleSpecifier": "relative",
21+
"workbench.iconTheme": "file-icons",
22+
"javascript.updateImportsOnFileMove.enabled": "always",
23+
"editor.renderControlCharacters": true,
24+
"diffEditor.ignoreTrimWhitespace": false,
25+
"prettier.trailingComma": "none",
26+
"editor.renderLineHighlight": "all",
27+
"editor.renderWhitespace": "all",
28+
"editor.rulers": [80],
29+
"editor.scrollBeyondLastLine": false,
30+
"editor.showFoldingControls": "always",
31+
"editor.snippetSuggestions": "top",
32+
"editor.suggest.localityBonus": true,
33+
"editor.suggestSelection": "recentlyUsedByPrefix",
34+
"editor.tabCompletion": "on",
35+
"editor.tabSize": 2,
36+
"editor.formatOnPaste": true,
37+
"editor.formatOnType": true,
38+
"editor.autoIndent": "full",
39+
"editor.foldingStrategy": "indentation",
40+
"editor.fontFamily": "'Fira Code', Dank Mono, monospace",
41+
"files.exclude": {
42+
"**/.DS_Store": true,
43+
"**/.git": true,
44+
"**/.hg": true,
45+
"**/.svn": true,
46+
"**/CVS": true,
47+
"**/__MACOSX": true
48+
},
49+
"[typescript]": {
50+
"editor.defaultFormatter": "esbenp.prettier-vscode"
51+
},
52+
"[typescriptreact]": {
53+
"editor.defaultFormatter": "esbenp.prettier-vscode"
54+
},
55+
"git.autofetch": false,
56+
"window.zoomLevel": 0,
57+
"git.ignoreLimitWarning": true,
58+
"editor.formatOnSave": true,
59+
"editor.fontSize": 14
60+
}

0 commit comments

Comments
 (0)