-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use TSConfig base, fix CI and lints, rename ui dir
- Loading branch information
Showing
8 changed files
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ module.exports = { | |
singleQuote: true, | ||
semi: false, | ||
jsxSingleQuote: true, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
"build:go:default": "go build -ldflags=\"-s -w\" -o writer -v", | ||
"build:go:windows": "go build -ldflags=\"-s -w -H windowsgui\" -o writer.exe -v", | ||
"build:launcher": "go build -tags launcher -ldflags=\"-s -w\" -o launcher.exe -v launcher_windows.go", | ||
"build:js": "parcel build ui/index.tsx" | ||
"build:js": "parcel build renderer/index.tsx" | ||
}, | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
|
@@ -46,6 +46,7 @@ | |
"devDependencies": { | ||
"@babel/core": "^7.23.3", | ||
"@emotion/babel-plugin": "^11.11.0", | ||
"@tsconfig/vite-react": "^2.0.1", | ||
"@types/react": "^18.2.38", | ||
"@types/react-dom": "^18.2.17", | ||
"@typescript-eslint/eslint-plugin": "^6.12.0", | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,7 @@ | ||
{ | ||
"extends": "@tsconfig/vite-react", | ||
"compilerOptions": { | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
"jsxImportSource": "@emotion/react", | ||
"jsx": "react-jsx", | ||
"lib": [ | ||
"ES5", | ||
"ES2015", | ||
"ES2020.BigInt", | ||
"DOM", | ||
], | ||
"jsxImportSource": "@emotion/react" | ||
}, | ||
"include": [ | ||
"ui/**/*", | ||
"ui/index.d.ts" | ||
], | ||
"include": ["renderer/**/*", "renderer/index.d.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters