Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jan 17, 2024
1 parent 72a2bee commit 703ed96
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 46 deletions.
8 changes: 4 additions & 4 deletions packages/iso-base/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
Expand All @@ -14,10 +14,10 @@
"src/utils.js",
"src/base-x.js",
"src/varint.js",
"src/ec-compression.js"
"src/ec-compression.js",
],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
12 changes: 6 additions & 6 deletions packages/iso-did/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"references": [
{
"path": "../iso-base"
"path": "../iso-base",
},
{
"path": "../iso-web"
}
"path": "../iso-web",
},
],
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out", "test/mocks/mockServiceWorker.js"],
"typedocOptions": {
"entryPoints": ["src/index.js", "src/core.js", "src/key.js", "src/web.js"],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
14 changes: 7 additions & 7 deletions packages/iso-filecoin/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"references": [
{
"path": "../iso-base"
"path": "../iso-base",
},
{
"path": "../iso-web"
}
"path": "../iso-web",
},
],
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
Expand All @@ -22,10 +22,10 @@
"src/message.js",
"src/rpc.js",
"src/signature.js",
"src/utils.js"
"src/utils.js",
],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
6 changes: 3 additions & 3 deletions packages/iso-kv/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
"typedocOptions": {
"entryPoints": ["src/index.js", "src/adapters/*.js"],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
12 changes: 6 additions & 6 deletions packages/iso-passkeys/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"references": [
{
"path": "../iso-base"
"path": "../iso-base",
},
{
"path": "../iso-did"
}
"path": "../iso-did",
},
],
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
"typedocOptions": {
"entryPoints": ["src/index.js"],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
14 changes: 7 additions & 7 deletions packages/iso-signatures/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"references": [
{
"path": "../iso-base"
"path": "../iso-base",
},
{
"path": "../iso-did"
}
"path": "../iso-did",
},
],
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
Expand All @@ -19,10 +19,10 @@
"src/signers/*.js",
"src/verifiers/*.js",
"src/asn1.js",
"src/spki.js"
"src/spki.js",
],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
12 changes: 6 additions & 6 deletions packages/iso-web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"references": [
{
"path": "../iso-kv"
}
"path": "../iso-kv",
},
],
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out", "test/mocks/mockServiceWorker.js"],
Expand All @@ -18,10 +18,10 @@
"src/http.js",
"src/env.js",
"src/doh/index.js",
"src/doh/dnslink.js"
"src/doh/dnslink.js",
],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
6 changes: 3 additions & 3 deletions packages/iso-websocket/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "dist"
"outDir": "dist",
},
"include": ["src", "scripts", "test", "package.json"],
"exclude": ["node_modules", "dist", "out"],
"typedocOptions": {
"entryPoints": ["src/index.js"],
"includeVersion": true,
"excludeExternals": true,
"internalModule": "<internal>"
}
"internalModule": "<internal>",
},
}
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"packages/iso-signatures",
"packages/iso-web",
"packages/iso-kv",
"packages/iso-websocket"
"packages/iso-websocket",
],
"excludeExternals": true,
"sourceLinkExternal": true,
"darkHighlightTheme": "github-dark",
"navigationLinks": {
"Github": "https://github.com/hugomrdias/iso-repo"
}
}
"Github": "https://github.com/hugomrdias/iso-repo",
},
},
}

0 comments on commit 703ed96

Please sign in to comment.