-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
87cda41
commit e819776
Showing
4 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ pnpm-debug.log* | |
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
# .vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": "0.2.0", | ||
"compounds": [], | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Electron Main", | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-nix", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-win.cmd" | ||
}, | ||
// runtimeArgs will be passed directly to your Electron application | ||
"runtimeArgs": [], | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Electron Render", | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-nix", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-forge-vscode-win.cmd" | ||
}, | ||
// runtimeArgs will be passed directly to your Electron application | ||
"runtimeArgs": ["--remote-debugging-port=9222"], | ||
"cwd": "${workspaceFolder}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"files.exclude": { | ||
"**/.git": false, | ||
"**/.vscode": false, | ||
"**/.webpack": false | ||
}, | ||
"search.exclude": { | ||
"**/.git": false, | ||
"**/.vscode": false, | ||
"**/.webpack": false | ||
}, | ||
"cSpell.words": ["applicationmenuclick", "Ipcs", "Rehype", "testid", "tsdef"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"command": "yarn workspace marqus-desktop run start", | ||
"problemMatcher": ["$tsc"], | ||
"label": "Start app", | ||
"detail": "yarn workspace marqus-desktop run start" | ||
}, | ||
{ | ||
"type": "shell", | ||
"command": "yarn workspace marqus-desktop run publish", | ||
"problemMatcher": ["$tsc"], | ||
"label": "Publish app", | ||
"detail": "yarn workspace marqus-desktop run publish" | ||
}, | ||
{ | ||
"type": "shell", | ||
"command": "yarn workspace marqus-desktop run test", | ||
"problemMatcher": ["$tsc"], | ||
"label": "Test app", | ||
"detail": "yarn workspace marqus-desktop run test" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "test e2e", | ||
"path": "packages/marqus-desktop", | ||
"problemMatcher": ["$tsc"], | ||
"label": "npm: test e2e - packages/marqus-desktop", | ||
"detail": "playwright test test/e2e/" | ||
}, | ||
{ | ||
"type": "npm", | ||
"script": "package", | ||
"path": "packages/marqus-desktop", | ||
"problemMatcher": ["$tsc"], | ||
"label": "npm: package - packages/marqus-desktop", | ||
"detail": "electron-forge pacakge" | ||
} | ||
] | ||
} |