Skip to content

Commit

Permalink
refactor: working vanilla
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeff committed Jul 8, 2024
1 parent 2eb2fb5 commit c05624f
Show file tree
Hide file tree
Showing 18 changed files with 19,422 additions and 61 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@
"typescript.preferences.quoteStyle": "single",
"prettier.semi": false,
"typescript.format.semicolons": "remove",
"cSpell.words": [
"fontsource",
"roboto"
],
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# jjeff-electron-quickstart
# electron-svelte

Jeff's Electon starter project with Typescript, Electron Forge, Webpack, Prettier, ESLint, and Playwright E2E testing set up.
A [Svelte](https://svelte.dev/) test run, built on Jeff's Electon starter project with Typescript, Electron Forge, Webpack, Prettier, ESLint, and Playwright E2E testing set up.
10 changes: 10 additions & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,13 @@
// see: ../forge.config.js > config > plugins > renders > entryPoints
declare const MAIN_WINDOW_WEBPACK_ENTRY: string
declare const MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY: string

// allow importing of files starting with "file-loader!"
declare module 'file-loader!*' {
const url: string
export default url
}

declare module '*.svelte' {
export { SvelteComponent as default } from 'svelte'
}
Loading

0 comments on commit c05624f

Please sign in to comment.