-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
narrat.code-workspace
71 lines (71 loc) · 1.58 KB
/
narrat.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
{
"folders": [
{
"name": "narrat",
"path": "packages/narrat"
},
{
"name": "root",
"path": "."
},
{
"name": "docs",
"path": "docs"
}
],
"settings": {
"vitest.enable": true,
"editor.tabSize": 2,
"files.exclude": {
"src/lib.ts": true,
"**/dist/*": true,
"**/lib/*": true,
"node_modules/": true,
"packages/": true,
"docs/": true,
"demo-template": true,
"**/*.rpyc": true,
"**/*.rpa": true,
"**/*.rpymc": true,
"**/cache/": true,
"**/lib.ts": true
},
"search.exclude": {
"src/lib.ts": true,
"dist/": true,
"lib/": true,
"**/lib": true,
"node_modules/": true,
"**/lib.ts": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.preferences.autoImportFileExcludePatterns": [
"@/lib/**",
"@/lib**",
"@/lib",
"@/lib.ts",
"**/lib.ts",
"**/lib",
"src/lib",
"**/node_modules/**",
"**/dist/**",
"**/lib/**",
"src/lib.ts",
"lib.ts",
"packages/narrat/src/lib.ts",
"src/lib/*",
"lib",
"**/lib.ts"
],
"javascript.preferences.autoImportFileExcludePatterns": ["@lib"],
"javascript.preferences.importModuleSpecifier": "shortest",
"typescript.preferences.importModuleSpecifier": "shortest"
}
}