-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi18nGuard.code-workspace
More file actions
55 lines (55 loc) · 1.24 KB
/
Copy pathi18nGuard.code-workspace
File metadata and controls
55 lines (55 loc) · 1.24 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
49
50
51
52
53
54
55
{
"folders": [
{
"name": "i18nGuard Core",
"path": "./packages/core"
},
{
"name": "i18nGuard CLI",
"path": "./packages/cli"
},
{
"name": "i18nGuard Adapters",
"path": "./packages/adapters"
},
{
"name": "i18nGuard VS Code Extension",
"path": "./packages/vscode"
},
{
"name": "Test i18next Project",
"path": "./test-i18next"
},
{
"name": "Test Project",
"path": "./test-project"
},
{
"name": "Example i18next React",
"path": "./examples/i18next-react"
}
],
"settings": {
"typescript.preferences.includePackageJsonAutoImports": "on",
"typescript.suggest.autoImports": true,
"typescript.validate.enable": true,
"typescript.format.enable": true,
"typescript.disableAutomaticTypeAcquisition": false,
"typescript.workspaceSymbols.scope": "allOpenProjects",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.vscode": false
}
},
"extensions": {
"recommendations": [
"ms-vscode.vscode-typescript-next",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode"
]
}
}