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
|
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"dist": false,
".pnp.js": false,
"**/node_modules": true
},
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true,
"**/node_modules": true,
"neu-item-repo": true,
"neu-item-repo-dangerous": true
},
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.format": true
},
"diffEditor.wordWrap": "on",
"editor.insertSpaces": false,
"editor.wordWrap": "on",
"editor.tabSize": 2,
"prettier.configPath": ".prettierrc.json",
"prettier.prettierPath": "node_modules/prettier",
"prettier.withNodeModules": true,
"prettier.useEditorConfig": false,
"javascript.format.enable": false,
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifierEnding": "js",
"javascript.preferences.useAliasesForRenames": false,
"typescript.format.enable": false,
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.useAliasesForRenames": false,
"discord.removeDetails": false,
"discord.removeLowerDetails": false,
"discord.removeRemoteRepository": false,
"discord.removeTimestamp": false,
"typescript.tsdk": "node_modules/typescript/lib"
}
|