Skip to content

Commit

Permalink
Merge pull request #10 from spaceagetv/feat/electron-32
Browse files Browse the repository at this point in the history
feat: Electron 32
  • Loading branch information
jjeff authored Aug 25, 2024
2 parents 92437f5 + d33f3af commit b2e9120
Show file tree
Hide file tree
Showing 10 changed files with 3,547 additions and 165 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
dist
env.*
env.*
.nyc_output
/coverage
17 changes: 17 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.test.ts"
],
"reporter": [
"html",
"text",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
12 changes: 11 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,15 @@
"editor.formatOnSave": false,
"eslint.format.enable": true,
"eslint.codeActionsOnSave.mode": "all",
"typescript.preferences.importModuleSpecifier": "relative"
"typescript.preferences.importModuleSpecifier": "relative",
"mochaExplorer.files": "test/**/*.test.?s",
"mochaExplorer.require": "ts-node/register",
"cSpell.words": [
"fullscreenable",
"maximizable",
"minimizable",
"Screenable",
"Thumbar",
"unmaximize"
]
}
Loading

0 comments on commit b2e9120

Please sign in to comment.