-
Notifications
You must be signed in to change notification settings - Fork 19
/
nova-ui.code-workspace
54 lines (54 loc) · 1.55 KB
/
nova-ui.code-workspace
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
49
50
51
52
53
54
{
"extensions": {
"recommendations": [
"Angular.ng-template",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
},
"folders": [
{
"name": "✨ nova",
"path": "."
},
{
"name": "📦 @nova-ui/bits",
"path": "packages\\bits"
},
{
"name": "📦 @nova-ui/charts",
"path": "packages\\charts"
},
{
"name": "📦 @nova-ui/dashboards",
"path": "packages\\dashboards"
}
],
"settings": {
"angular.enable-strict-mode-prompt": false,
"angular.view-engine": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
// "**/node_modules": true,
"**/packages": true
},
"prettier.configPath": ".prettierrc.js",
"prettier.requireConfig": true,
"prettier.useEditorConfig": true,
"search.exclude": {
"**/*.code-search": true,
"**/bower_components": true,
"**/node_modules": true
},
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "node_modules\\typescript\\lib",
"typescript.tsserver.experimental.enableProjectDiagnostics": false
}
}