-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJivs.code-workspace
86 lines (83 loc) · 2.07 KB
/
Jivs.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"folders": [
{
"path": "."
},
{
"path": "packages/jivs-engine"
},
{
"path": "packages/jivs-examples"
},
{
"path": "packages/jivs-configanalysis"
}
],
"settings": {
/* VSCode will use TSC only on workspaces, not the global level */
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.enablePromptUseGlobalTsdk": false,
"explorerExclude.backup": {},
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
".eslintignore": false,
".gitattributes": false,
".gitignore": false,
".npmignore": false,
"Jivs.code-workspace": false,
"lerna.json": false,
"LICENSE": false,
"package-lock.json": false,
"typedoc_output": false,
"node_modules": false,
".vscode": false
},
"explorerExclude.showPicker": false,
"explorer.excludeGitIgnore": false,
"jestrunner.configPath": "./jest.config.json",
"jestrunner.debugOptions": {
"runtimeArgs": [
"--experimental-vm-modules"
]
},
"jest.runMode": {
"type": "on-demand",
"coverage": true
},
"typescript.preferences.autoImportFileExcludePatterns": [
"**/build/**"
],
"terminal.integrated.env.windows": {
"NODE_OPTIONS": "--experimental-vm-modules --disable-warning ExperimentalWarning"
},
"search.exclude": {
"**/.git": true,
"**/build": true,
"**/coverage": true,
"/.github/": true,
"/*.js": true,
"/*.json": true,
"CHANGELOG.md": true,
"docs": true
},
"notebook.find.scope": {
"markupSource": true,
"markupPreview": true,
"codeSource": true,
"codeOutput": true
},
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative",
"eslint.enable": true,
"coverage-gutters.customizable.status-bar-toggler-watchCoverageAndVisibleEditors-enabled": true,
"coverage-gutters.showLineCoverage": false,
"coverage-gutters.showRulerCoverage": true,
"coverage-gutters.showGutterCoverage": false,
}
}