forked from ts-arch/ts-arch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathts-arch.code-workspace
More file actions
48 lines (48 loc) · 1.31 KB
/
ts-arch.code-workspace
File metadata and controls
48 lines (48 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"usernamehw.errorlens",
"esbenp.prettier-vscode",
"maples7.terminal-inplace",
"joaompinto.asciidoctor-vscode",
"yzhang.markdown-all-in-one",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"rbbit.typescript-hero",
"alefragnani.bookmarks",
"eamodio.gitlens",
"hbenl.vscode-test-explorer-liveshare",
"hbenl.vscode-test-explorer",
"ms-vsliveshare.vsliveshare",
"kavod-io.vscode-jest-test-adapter"
]
},
"settings": {
"asciidoc.preview.attributes": {
"plantuml-server-url": "http://plantuml.com/plantuml"
},
"editor.tabSize": 2,
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"editor.snippetSuggestions": "top",
"typescript.updateImportsOnFileMove.enabled": "always",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "afterDelay",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/.history": true
}
}
}