-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkspace.code-workspace
50 lines (50 loc) · 1.63 KB
/
workspace.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
43
44
45
46
47
48
49
50
{
"settings": {
"editor.formatOnSave": true,
"eslint.packageManager": "yarn",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"[javascriptreact]": {
"editor.formatOnSave": true,
},
"[typescriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.internalConsoleOptions": "neverOpen",
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": [
"file:///Users/john_richardson/Documents/Projects/transform-narratives/.github/workflows/build.yml",
"file:///Users/john_richardson/Documents/Projects/transform-narratives/.github/workflows/test.yml"
],
"https://json.schemastore.org/codecov.json": "file:///Users/john_richardson/Documents/Projects/transform-narratives/packages/functions/UserOrchestrator/dump.pm2"
},
"typescript.tsdk": "node_modules/typescript/lib",
"liveServer.settings.multiRootWorkspaceName": "./",
// "WillLuke.nextjs.addTypesOnSave": true,
// "WillLuke.nextjs.hasPrompted": true,
},
"folders": [
{
"name": "./",
"path": "./"
},
{
"name": "Apps",
"path": "./apps"
},
{
"name": "Functions",
"path": "./packages/functions"
},
{
"name": "Packages",
"path": "./packages"
},
{
"name": "Scripts",
"path": "./scripts"
}
]
}