-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use @golemcloud org + Config improvements #4
Conversation
@@ -20,15 +20,18 @@ import type { Result } from "./result"; | |||
* @param input | |||
* @param init | |||
*/ | |||
function fetchSync(input: RequestInfo | URL, init?: RequestInit): Response { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changes to types here to be compatible with node types
"lib": ["es2020", "dom"] | ||
"lib": ["es2020"], | ||
"types": ["node"], | ||
"moduleResolution": "Node" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed dom
from lib
(because we are not running in browser) and set moduleResolution to Node
"enabled": true, | ||
"lineWidth": 100, | ||
"indentStyle": "space", | ||
"indentWidth": 3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentWidth
3 -> 4
golem-ts
to@golemcloud/golem-ts
tsconfig.json
to use node types instead of includingdom
in lib array