-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathnode-firebird-drivers.code-workspace
More file actions
41 lines (38 loc) · 875 Bytes
/
node-firebird-drivers.code-workspace
File metadata and controls
41 lines (38 loc) · 875 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
38
39
40
41
{
"folders": [
{
"name": "driver",
"path": "packages/node-firebird-driver",
},
{
"name": "driver-native",
"path": "packages/node-firebird-driver-native",
},
{
"name": "native-api",
"path": "packages/node-firebird-native-api",
},
{
"name": "root",
"path": ".",
},
],
"settings": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.rulers": [120],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit",
},
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/node_modules/": true,
"**/dist/": true,
"**/*.tsbuildinfo": true,
},
"typescript.tsdk": "root/node_modules/typescript/lib",
"npm.packageManager": "yarn",
},
}