-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathlatteart.code-workspace
More file actions
37 lines (37 loc) · 1.16 KB
/
latteart.code-workspace
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"folders": [
{ "name": "root", "path": "." },
{ "path": "packages/latteart-launch" },
{ "path": "packages/latteart-cli" },
{ "path": "packages/latteart-gui" },
{ "path": "packages/latteart-client" },
{ "path": "packages/latteart-repository" },
{ "path": "packages/latteart-capture-cl" },
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
},
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.workingDirectories": [{ "mode": "auto" }],
"jestrunner.debugOptions": {
"args": ["--coverage=false"],
},
"jestrunner.jestPath": "../../node_modules/jest/bin/jest.js",
"jestrunner.runOptions": ["--coverage=false"],
"npm.packageManager": "npm",
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"firsttris.vscode-jest-runner",
],
},
}