Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 19 additions & 18 deletions src/ElectronNET.Host/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Electron App",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"program": "${workspaceFolder}/main.js",
"sourceMaps": true,
"args": [
"--test=true",
"--blub=wuhuu"
]
}
]
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Electron App",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"program": "${workspaceFolder}/main.js",
"skipFiles": [ "<node_internals>/**" ],
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"args": [
"--test=true"
]
}
]
}
3 changes: 3 additions & 0 deletions src/ElectronNET.Host/ElectronHostHook/connector.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ElectronNET.Host/ElectronHostHook/connector.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions src/ElectronNET.Host/ElectronHostHook/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ElectronNET.Host/ElectronHostHook/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/ElectronNET.Host/ElectronNET.Host.esproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.3864779">
<ItemGroup>
<None Include=".vscode\tasks.json" />
</ItemGroup>
</Project>
3 changes: 1 addition & 2 deletions src/ElectronNET.Host/api/ipc.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ElectronNET.Host/api/ipc.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/ElectronNET.Host/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = [
{
rules: {
// Add rules here.
}
}
];
5 changes: 5 additions & 0 deletions src/ElectronNET.Host/globals.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Ambient declarations to silence implicit any / global index usage
// Minimal surface – expand only if further errors appear.
declare var browserViews: any;
declare var tray: any;
declare var electronsocket: any;
Loading
Loading