Skip to content

Commit 153c7e0

Browse files
release 0.0.1 (#25)
* 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 <[email protected]>
1 parent 625c4b8 commit 153c7e0

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

tsconfig.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@
22
"compilerOptions": {
33
"target": "ES2020",
44
"useDefineForClassFields": true,
5-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
5+
"lib": [
6+
"ES2020",
7+
"DOM",
8+
"DOM.Iterable"
9+
],
610
"module": "ESNext",
711
"skipLibCheck": true,
812
"baseUrl": ".",
913
"paths": {
10-
"~/*": ["./src/*"]
14+
"~/*": [
15+
"./src/*"
16+
]
1117
},
12-
1318
/* Bundler mode */
1419
"moduleResolution": "bundler",
1520
"allowImportingTsExtensions": true,
1621
"resolveJsonModule": true,
1722
"isolatedModules": true,
1823
"noEmit": true,
1924
"jsx": "react-jsx",
20-
2125
/* Linting */
2226
"strict": true,
2327
"noUnusedLocals": true,
@@ -32,6 +36,17 @@
3236
"**/*.cjs",
3337
"**/*.js",
3438
],
39+
"exclude": [
40+
"node_modules",
41+
"dist",
42+
"build",
43+
"coverage",
44+
"public"
45+
]
3546

36-
"references": [{ "path": "./tsconfig.node.json" }]
47+
"references": [
48+
{
49+
"path": "./tsconfig.node.json"
50+
}
51+
]
3752
}

0 commit comments

Comments
 (0)