-
-
Notifications
You must be signed in to change notification settings - Fork 739
ElectronNET.Host: Replace website by a real ts project #935
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| 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> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| module.exports = [ | ||
| { | ||
| rules: { | ||
| // Add rules here. | ||
softworkz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| ]; | ||
| 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; |
Uh oh!
There was an error while loading. Please reload this page.