Skip to content

Commit

Permalink
Fixed VS Code typescript compile
Browse files Browse the repository at this point in the history
  • Loading branch information
robmoffat committed Apr 18, 2024
1 parent 5276713 commit dc1aadd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"recommendations": [
"arcanis.vscode-zipfs",
"dbaeumer.vscode-eslint"
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
},
"eslint.nodePath": ".yarn/sdks",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
"typescript.enablePromptUseWorkspaceTsdk": true,
"prettier.prettierPath": ".yarn/sdks/prettier/index.js"
}
6 changes: 0 additions & 6 deletions packages/da-server/src/supply/post-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ export const supply: Supplier = (

function createResponseMessage(source: Window, appId: AppIdentifier): APIResponseMessage {
return {
//provider: "string",
//authRequired: true,
//authToken: "secret",
//desktopAgentBridgeVersion: "demo",
//supportedFDC3Versions: [ '2.0'],
//fdc3Version: "2.0",
type: FDC3_API_RESPONSE_MESSAGE_TYPE,
...detailsResolver(source, appId),

Expand Down

0 comments on commit dc1aadd

Please sign in to comment.