Skip to content

Commit

Permalink
feat: add vscode config files to app templates (#11870)
Browse files Browse the repository at this point in the history
Fixes TIMOB-28070
  • Loading branch information
jquick-axway committed Aug 21, 2020
1 parent c1c4af2 commit f8ef53a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions templates/app/angular-default/template/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
{
"files.exclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true,
"Resources/": true
},
"search.exclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true,
"Resources/": true
},
"files.watcherExclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true,
"Resources/": true
}
}
5 changes: 5 additions & 0 deletions templates/app/default/template/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"axway.vscode-titanium"
]
}
17 changes: 17 additions & 0 deletions templates/app/default/template/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"files.exclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true
},
"search.exclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true
},
"files.watcherExclude": {
"build/": true,
"node_modules/": true,
"package-lock.json": true
}
}

0 comments on commit f8ef53a

Please sign in to comment.