Skip to content

Commit

Permalink
馃殌 First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrieseberg committed Jun 6, 2018
0 parents commit 8b3df17
Show file tree
Hide file tree
Showing 34 changed files with 5,883 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
out
dist
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558

This comment has been minimized.

Copy link
@malept

malept Oct 19, 2020

Member

@vantuan1994 please refrain from making comments here unless they're relevant to everyone, they're public comments.

// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
25 changes: 25 additions & 0 deletions forge.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
packagerConfig: {},
makers: [
{
name: "@electron-forge/maker-squirrel",
config: {
name: "electron_fiddle"
}
},
{
name: "@electron-forge/maker-zip",
platforms: [
"darwin"
]
},
{
name: "@electron-forge/maker-deb",
config: {}
},
{
name: "@electron-forge/maker-rpm",
config: {}
}
]
}

0 comments on commit 8b3df17

Please sign in to comment.