Skip to content

Commit 4354dc1

Browse files
committed
Updated example application for June 2021
1 parent 0b7bff3 commit 4354dc1

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"name": "Electron: Renderer",
27-
"type": "chrome", //use the Debugger for Chrome (extension)
27+
"type": "pwa-chrome", //use the Chrome debugger that comes with VS Code
2828
"request": "attach",
2929
"port": 9223, //use debug port opened in Electron: Main configuration
3030
"webRoot": "${workspaceFolder}",

package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"license": "MIT",
1111
"description": "",
1212
"dependencies": {
13-
"electron": "^12.0.7",
14-
"typescript": "^4.2.4"
13+
"electron": "^13.1.2",
14+
"typescript": "^4.3.2"
1515
},
1616
"devDependencies": {
1717
"copyfiles": "^2.4.1"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
/* Visit https://aka.ms/tsconfig.json to read more about this file */
44

5-
"target": "ES2019", // Electron 12 is based on Chrome 89, which supports ES2019
5+
"target": "ES2019", // Electron 13 is based on Chrome 91, which supports ES2019
66
// https://kangax.github.io/compat-table/es2016plus/
77
"module": "commonjs",
88
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES

0 commit comments

Comments
 (0)