-
Notifications
You must be signed in to change notification settings - Fork 4
/
wt-aggregator.code-workspace
42 lines (42 loc) · 1.09 KB
/
wt-aggregator.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"path-intellisense.absolutePathToWorkspace": true,
"path-intellisense.extensionOnImport": false,
"npm-intellisense.importDeclarationType": "const",
"npm-intellisense.importLinebreak": "\r\n",
"npm-intellisense.packageSubfoldersIntellisense": true,
"npm-intellisense.recursivePackageJsonLookup": true,
"npm-intellisense.importES6": true,
"npm-intellisense.importQuotes": "'",
"editor.tabSize": 2,
"flow.enabled": true,
"flow.fileExtensions": [
".js",
".mjs",
".jsx",
".flow",
".json"
],
"flow.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow",
"files.associations": {
"*.js": "javascript",
"*.jsx": "javascriptreact"
},
"flow.useNPMPackagedFlow": false,
"javascript.validate.enable": false,
"javascript.format.enable": false,
"editor.formatOnSave": false,
"better-comments.multilineComments": true,
"emmet.includeLanguages": {
"postcss": "css"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
}
}