Skip to content

Commit dc43383

Browse files
author
Andreas Bartho
committed
Added index.html for the Github page
1 parent 1271e30 commit dc43383

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

docs/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en-US">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="description" content="Setting up Visual Studio Code for Electron development and debugging in Typescript" />
6+
<link rel="stylesheet" href="media/index.css">
7+
</head>
8+
<body>
9+
<h1>Setting up Visual Studio Code for Electron development and debugging in Typescript</h1>
10+
11+
<p>The aim of this repository is to help setting up Visual Studio Code for development and debugging of Electron apps in Typescript.</p>
12+
13+
<p>Visual Studio Code comes with Electron support and Typescript support out of the box, but bringing the two together requires some advanced knowledge of the available configuration options.</p>
14+
15+
<p>The <a href="https://github.com/abartho/electron-typescript-vscode">repository</a> contains a README with step by step instructions and an example project to demonstrate how Visual Studio Code, Node, Electron and Typescript must be configured to work together.</p>
16+
</body>
17+
</html>

docs/media/index.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
a {
2+
color: #0366d6;
3+
text-decoration: none
4+
}
5+
6+
a:hover {
7+
text-decoration: underline
8+
}
9+
10+
body {
11+
max-width: 1012px;
12+
margin-right: auto;
13+
margin-left: auto;
14+
margin-bottom: 32px;
15+
padding-top: 16px;
16+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
17+
font-size: 16px;
18+
line-height: 1.5;
19+
word-wrap: break-word
20+
}
21+
22+
body>*:first-child {
23+
margin-top: 0 !important
24+
}

0 commit comments

Comments
 (0)