Skip to content

Commit

Permalink
release 0.0.1 (#25)
Browse files Browse the repository at this point in the history
* feat: enable more editor settings and editor styling improvements #4 (#19)

* feat: enable more editor settings and editor styling improvements #4

* feat: enable indent unit setting #4

* feat: enable more editor settings #4 (#20)

* fix: wonky scrollbar styles, still need to actually solve this

* feat: add client side validation for editor settings #4 (#21)

* feat: add client side validation for editor settings #4

* feat: enable font family editor setting and refactor editor settings #4

* feat: add ability to save nsec

* show npub

* refactor: remove nostr settings, add profile and relays

* dynamic relay form

* update dialog name

* fix: context menu holding stale state

* deps: update dependencies

* bump version

* deps: update dependencies

* bump version

* build: update tsconfig

---------

Co-authored-by: Jason Chiarulli <jaythecodemonkey.7vk7i@slmail.me>
  • Loading branch information
ChristianChiarulli and jchiarulli authored Jun 25, 2024
1 parent 625c4b8 commit 153c7e0
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,26 @@
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
},

/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",

/* Linting */
"strict": true,
"noUnusedLocals": true,
Expand All @@ -32,6 +36,17 @@
"**/*.cjs",
"**/*.js",
],
"exclude": [
"node_modules",
"dist",
"build",
"coverage",
"public"
]

"references": [{ "path": "./tsconfig.node.json" }]
"references": [

Check failure on line 47 in tsconfig.json

View workflow job for this annotation

GitHub Actions / publish-tauri (macos-latest, --target aarch64-apple-darwin)

',' expected.
{
"path": "./tsconfig.node.json"
}
]
}

0 comments on commit 153c7e0

Please sign in to comment.