-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvanilla-ts-core.code-workspace
More file actions
37 lines (37 loc) · 935 Bytes
/
vanilla-ts-core.code-workspace
File metadata and controls
37 lines (37 loc) · 935 Bytes
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": [
{
"path": "."
}
],
"settings": {
"-files.exclude": {
"node_modules": true,
"example/out": true,
".gitignore": true,
"**/*.js.map": true,
"**/tsconfig*": true,
".npmrc": true,
"eslintrc.json": true,
"LICENSE": true,
"package-lock.json": true,
"README.md": true
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"-eslint.format.enable": true,
"eslint.validate": [
"typescript"
],
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
]
}
}