azure-sdk-for-js/dataplane.code-workspace

327 строки
7.5 KiB
Plaintext
Исходник Постоянная ссылка Обычный вид История

{
"folders": [
{
"name": "abort-controller",
"path": "sdk/core/abort-controller"
},
{
"name": "purview-catalog",
"path": "sdk/purview/purview-catalog-rest"
},
{
"name": "anomaly-detector-rest",
"path": "sdk/anomalydetector/ai-anomaly-detector-rest"
},
{
"name": "app-configuration",
"path": "sdk/appconfiguration/app-configuration"
},
{
"name": "communication-chat",
"path": "sdk/communication/communication-chat"
},
{
"name": "communication-common",
"path": "sdk/communication/communication-common"
},
{
"path": "sdk/communication/communication-email"
},
{
"name": "communication-identity",
"path": "sdk/communication/communication-identity"
},
{
"name": "communication-sms",
"path": "sdk/communication/communication-sms"
},
{
"name": "container-registry",
"path": "sdk/containerregistry/container-registry"
},
{
"name": "core-amqp",
"path": "sdk/core/core-amqp"
},
{
"name": "core-auth",
"path": "sdk/core/core-auth"
},
{
"name": "core-client",
"path": "sdk/core/core-client"
},
{
"name": "core-client-rest",
"path": "sdk/core/core-client-rest"
},
{
"name": "ai-document-translator",
"path": "sdk/documenttranslator/ai-document-translator-rest"
},
{
"name": "confidential-ledger",
"path": "sdk/confidentialledger/confidential-ledger-rest"
},
{
"name": "agrifood-farming",
"path": "sdk/agrifood/agrifood-farming-rest"
},
{
"name": "core-rest-pipeline",
"path": "sdk/core/core-rest-pipeline"
},
{
"name": "core-lro",
"path": "sdk/core/core-lro"
},
{
"name": "core-paging",
"path": "sdk/core/core-paging"
},
{
"name": "core-tracing",
"path": "sdk/core/core-tracing"
},
{
"name": "core-util",
"path": "sdk/core/core-util"
},
{
"name": "core-xml",
"path": "sdk/core/core-xml"
},
{
"name": "cosmos",
"path": "sdk/cosmosdb/cosmos"
},
{
"name": "eventgrid",
"path": "sdk/eventgrid/eventgrid"
},
{
"name": "event-hubs",
"path": "sdk/eventhub/event-hubs"
},
{
"name": "eventhubs-checkpointstore-blob",
"path": "sdk/eventhub/eventhubs-checkpointstore-blob"
},
{
"name": "form-recognizer",
"path": "sdk/formrecognizer/ai-form-recognizer"
},
{
"name": "identity",
"path": "sdk/identity/identity"
},
{
"name": "keyvault-admin",
"path": "sdk/keyvault/keyvault-admin"
},
{
"name": "keyvault-certificates",
"path": "sdk/keyvault/keyvault-certificates"
},
{
"name": "keyvault-keys",
"path": "sdk/keyvault/keyvault-keys"
},
{
"name": "keyvault-secrets",
"path": "sdk/keyvault/keyvault-secrets"
},
{
"name": "logger",
"path": "sdk/core/logger"
},
{
"name": "maps-common",
"path": "sdk/maps/maps-common"
},
[Maps] Onboarding `@azure-rest/maps-route` (#23588) * Update maps dependency in pnpm-lock.yaml * Fix sample metadata errors * Fix linting errors * Fix linting errors * Fix run time error * Update package.json in samples folder * Fix linting errors * Fix linting errors * Add changelog for maps-common * Update recording files for maps-search * Add test.yml for maps-search * Add tests.yml for render and route * Update tests.yml * Update test-resources.json for maps * Fix tests.yml format error * Update env vars and remove unused export var * Remove unused code * Fix lock file * Remove route & render * Replace `beginGet*Batch` with `resume*Batch` We provide a `beginGet*Batch` method to resume the previous request previously. This is not ideal because it need to get a `batchId` which is store in the internal state of the LRO. Once the LRO brings changes, our code will be broken. We can achieve the same thing by using serialized state. This change aims to leverage this approach and create convenience methods `resume*Batch` for users * Update recording * Make the endpoint of `MapsSearchClient` configurable * Change LatLon from an interface to a tuple Also remove the `toLatLon` function since creating a tuple is quite easy. * Make the props `coordinates` and `countryCodeFilter` optional Specifying `coordinates` and `countryCodeFilter` can narrow the results of the fuzzy search. But considring the case like searching "Australia", theese fields may have no use. We decided to make them optional so user can decides if they want to narrow down the results or not. * fixup! Remove route & render * Adjust CHANGELOGs of maps-search & common Following the keyvault-common, removing CHANGELOGs from maps-common since it's not published. * Update samples * Add batchRequest sample * Add a new sample searchAddressResult * Update search.ts and its examples * enhance code example in README.md * comment unused import * Update recording for maps-search * remove redundant recording files * Add maps-search * Rename LatLong to LatLon * Fix constructor Readme doc * Update readme to new signature * Add tests partially * Change LatLon/BoundingBox to interfaces * Reduce the number of constructor overloading * Rename SearchClient as MapsSearchClient * Add options mapper tests * Add result type mapper tests (in progress) * rename clientId to mapsAccountClientId * listPolygons -> getPolygons * getPointOfInterestCategoryTree -> getPointOfInterestCategories * Expose missing model * Add alternative input file for quick experiment * Regenerate code and make changes accordingly * Reduce number of overloads of fuzzy searches * Add geojson types * Adopting new geojson definitions * Change test specs to align with new method names * clean up models and tsconfig * Expose Known* models * Remove batch sync methods * Add public tests (non-batch) * move model * Add docstrings * Start polling in begin* method * Refactor BatchPoller for retrieving batchId * Finalize batch pollers * Readd batch methods * Update generated code * Finalize batch signature * Rebuild samples & clean up * Add AAD tests * Clean up Swagger readme * Fix spelling * Add initial files for @azure/maps-route module * maps-search: change comments and perform formatting * Methods options and testing skeleton for maps-route * maps-search: refactor options * Improve convenience layer for non-LRO methods * Change variable names * Complete batch methods * update maps-search Readme * Update maps-route Readme * Add generated samples for maps-route * Update samples for maps-search * Delete backup file * Add maps-common module * Update maps-route/maps-search to use maps-common * maps-render: first draft * Use LatLon/BoundingBox from maps-common * Complete maps-render with tests * Expose required types from maps-route * Expose required types from maps-search * Complete unit tests for maps-render * Update maps-render README * Update samples * Fix comment/strings * Fix comment/strings * Update Route comment/interface * Regenerate code * Update files * Define required fields and fix code * Remove non-poller batch methods * Fix playback test failure * Rename parts of model names * Rename remaining parts of models according to review feedback * Remove TODO comments * Update Reamdme transform to reflect latest swagger * Change key policy name * Simplify batch item error model * Add brower tests * Turn maps-common into internal module * Rearrange Readme * Rewrite Readme for common * Remove batch-sync methods * Route required fields: part 1 * Route required fields: part 2 * Add AAD back * Route model fixes #1 * Route model fixes #2 + geojson named tuples * Refine geojson types * Aliased a few method options * maps-render required fields part 1 * Do not validate budget parameters * Revert "Do not validate budget parameters" This reverts commit 4ec3f5fd18a21466745ad23fe3e79c043ace9546. * Rename MapTileset to TileJson * Render: model rename & type improvement * Explicitly transform image range * Fix route record tests * Update map account creation commands in Readme * Update Readme/docstrings/samples for Search/Route/Render * Remove rollup and use dev-tool instead * Remove some empty tests * Add AAD test case and make file name shorter * Update test cases * Update cspell rules * Update recording files * Simplify test cases * Sync cspell.json from upstream * Use test-recorder 2.0 and update unit test cases * Push wrong browsers recording files * Update settings to support recording * Fix dependency errors * Upgrade api-recorder and fix errors * Code refinement * Update maps search recording files * Update karma.conf.js format * Update recording files and settings * Fix broken links * Update maps dependency in pnpm-lock.yaml * Fix sample metadata errors * Fix linting errors * Fix linting errors * Fix run time error * Update package.json in samples folder * Fix linting errors * Fix linting errors * Add changelog for maps-common * Update recording files for maps-search * Add test.yml for maps-search * Add tests.yml for render and route * Update tests.yml * Update test-resources.json for maps * Fix tests.yml format error * Update env vars and remove unused export var * Remove unused code * Fix lock file * Remove maps-render * fixup! Change LatLon from an interface to a tuple * Comment the future doc link * Update doc & fix type issue * fix lint issues * Regenerate API View * Comment the whole [apiref] since the original syntax cannot pass the Analyze/Link verification * Fix issue related to the change of maps-common - Replace beginGet*Result with resume* methods - Turn LatLon to a tuple - Add mapper to transform the string to Date because resume* method will return a serialized Date * Update test recording * Remove maps-common from the Artifacts * remove unused dependencies * Add impression in README so we can track the page views * Remove `AZURE_LOG_LEVEL` in test.yml * Update samples - Move the option parameter to the right place - Add comments & "break" for handling the type of the search result to make it clear for the user * Patch {} to properties for GeoJsonPolygon * rename maxDetourTime to maxDetourTimeInSeconds * Update recordings * Remove any * Rename to detourTimeInSeconds to align the convention * Change the test.yml EnvVar See more explanation here: - https://github.com/Azure/azure-sdk-for-js/pull/23039#discussion_r973292952 - https://github.com/Azure/azure-sdk-for-js/pull/23039#discussion_r972413976 * Rename numResults to numberResults * Add document comment * Add endpoint options to MapsRouteClient * Remove unused dependencies in maps-route * fixup! Change the test.yml EnvVar * Update interfaces & documents * Update changelog * Merge getRouteDirection with the additional parameter one * Update samples * Make the `maps-common to a published package * Update the import of `maps-common` in `maps-search` * Fix CI Issue * Add documents for geojson * Update the samples & readme * Leverage maps-common package in mpas-route * chore update - Remove the unnecessary rule setting of eslint - Update the legacy type path * Remove unnecessary eslint config * WIP: Remove LRO generation * WIP: refactor mapsRouteClient * WIP: first generation * Format the generated code * Support AAD * Transform the model name * Add helper functions * Add a sample - route.ts * Add samples for lro * Add test * Generate samples * Add api view * Update the generation * WIP: ReadMe * Rename "computeBestOrder" to "computeBestWaypointOrder" * Refine README * Rename model * Add test createRouteDirectionsBatchRequest * Fix lint issue * Add missing metadata * Remove maps-route/ * Update CI issue * Fix merged issue * Update version rule for maps-common * Update CI name * Remove extra lint config * Use `require` in the README for consistency * Regenerate the samples * Remove redundant recording files * Remove unused parameters in test-resources.json * Refine readme snippet * Log something specific for the result * Update samples * Split the route.ts into 3 * Remove model rename * Use default export for RLC factory function Co-authored-by: Charlie Chen <charlie.chen@microsoft.com> Co-authored-by: Charlie Chen <yuchungchen@microsoft.com> Co-authored-by: --global <alankashiwa@gmail.com>
2022-10-26 09:31:05 +03:00
{
"name": "maps-route-rest",
"path": "sdk/maps/maps-route-rest"
},
{
"name": "metrics-advisor",
"path": "sdk/metricsadvisor/ai-metrics-advisor"
},
{
"name": "schema-registry",
"path": "sdk/schemaregistry/schema-registry"
},
{
"name": "schema-registry-avro",
"path": "sdk/schemaregistry/schema-registry-avro"
},
{
"name": "search",
"path": "sdk/search/search-documents"
},
{
"name": "service-bus",
"path": "sdk/servicebus/service-bus"
},
{
"name": "storage-blob",
"path": "sdk/storage/storage-blob"
},
[storage] STG73 features preview (#9532) * storage-internal-avro parser (#8893) * IReadable * Avro compiles * use storage-internal-avro as shared source in storage-blob * local build config * test and bug fix * rename IReadable to AvroReadable, separate the stream implementation with the interface declaration we need different implementation in browsers * add "private": true to pacakge.json * use Record * me * fix * tentative: use string enum instead of string union to avoid two copies of constant string Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage][Blob] Regenerate with Dec19 swagger * avor parser offset fix; Readable interface update (#9088) * [Storage] Regenerate API review * [storage] avro parser fix (#9154) * fix * resolve PR comments: remove useless assignment * AvroReadableFromStream: removeListener when read succeeds * remove listener when error callback triggered Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage] Dec19 - Quickquery (#9112) * [Storage] Quick query * [Storage] Quick query API review * [Storage] Quick query recording * [Storage] Quick query test case update * [Storage] Resolve comments * regenerate storage-blob * re-generate storage-file-share * regenrate datalake and undo adding mode to storageClient and storageClientContext * update datalake service version to 2019-12-12 * [Storage] QuickQuery - Make BlobQueryCsvTextConfiguration properties optional (#9484) * [storage][blob] blob versioning (#7886) * blob versioning * support 'bv' SAS * add response headers to getProperties & api-extract * fix comments * add versionId to getBlob response headers * fix broken undelete test * undo 'add snapshot to options' * replace withVersionId() with getURLWithVersionId() * Revert "replace withVersionId() with getURLWithVersionId()" This reverts commit eb1d90d34783b7717ca0a6a651ba2c53a637be48. * hide the versionId option in convenience layer * add more tests * fix comments * change version to preview * fix merge error Co-authored-by: Lin Jian <ljian3377@gmail.com> * [storage] added change feed (#9151) * fix * change feed with mininal live tests * mocking tests * format code & rename buildAvroReader parameter name * add README.md * change eventTime type from string to Date * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * PR comments * Rename eTag to etag in BlobChangeFeedEventData * remove hns only properties in change event record * fix minor bug in avro * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * rename to BlobChangeFeedGetChangesOptions and fix comments * update api Co-authored-by: Lin Jian <ljian3377@gmail.com> Co-authored-by: Jeremy Meng <yumeng@microsoft.com> Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * [storage][blob & datalake] Jumbo blob (#9480) * Jumbo putBlock, putBlob, datalake file append * undo upload ArrayBuffer * minor edit Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage] Support blob tags (recording will be added later) (#9440) * [Storage] Support blob tags (recording will be added later) * [Storage] Unify blob tags type Tags everywhere in options and responses * [Storage] Blob tags - resolve comments * update service version to 2019-12-12 * blob tags test record * fix listContainer options * wip * record skipped test for Jumbo * set default formatter * me * wip * blob record node * record * add version check for x permission * record for browser * wip * wip * wip * wip * add f for account SAS permission * add permission f, and x for container * wip * me * me * PR comments * me * record changefeed * record with blobversioning disabled * record skipped test for browser * wip * avro compatible with Node v8 * fix test record * fix record * fix ae-forgotten-export * lint * fall back to util for old node.js TextEncoder * release pipeline for change feed * [storage][file] large smb files (#9624) * create large smb files * wip * record test * me Co-authored-by: Lin Jian <ljian3377@gmail.com> * [storage] added set Expiry (#9560) * add set expiry * add check for input * use Date instead of a time string * call blob endpoint directly in datalake * undo evenhub package.json * add alternative version and use number instead of decimal string for expiresOn relative * add timeToExpireInMs to option * use string literals instead of enum * keep old enum for backward compatibility * nit Co-authored-by: Lin Jian <ljian3377@gmail.com> * merge fix * omit doc in storage-internal-avro * Revert "[storage] added set Expiry (#9560)" This reverts commit c3b4414b09539c02266cc16b192f87f3d686dd8e. * nit * skip live tests for blob tags and quick query * change path for ts-samples Co-authored-by: Lin Jian <ljian3377@gmail.com> Co-authored-by: XiaoningLiu <xiaoning.liu.leon@gmail.com> Co-authored-by: Xiaoning Liu <xiaonli@microsoft.com> Co-authored-by: Jeremy Meng <yumeng@microsoft.com> Co-authored-by: Brian Terlson <brian.terlson@microsoft.com>
2020-07-01 05:59:28 +03:00
{
"name": "storage-blob-changefeed",
"path": "sdk/storage/storage-blob-changefeed"
[storage] STG73 features preview (#9532) * storage-internal-avro parser (#8893) * IReadable * Avro compiles * use storage-internal-avro as shared source in storage-blob * local build config * test and bug fix * rename IReadable to AvroReadable, separate the stream implementation with the interface declaration we need different implementation in browsers * add "private": true to pacakge.json * use Record * me * fix * tentative: use string enum instead of string union to avoid two copies of constant string Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage][Blob] Regenerate with Dec19 swagger * avor parser offset fix; Readable interface update (#9088) * [Storage] Regenerate API review * [storage] avro parser fix (#9154) * fix * resolve PR comments: remove useless assignment * AvroReadableFromStream: removeListener when read succeeds * remove listener when error callback triggered Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage] Dec19 - Quickquery (#9112) * [Storage] Quick query * [Storage] Quick query API review * [Storage] Quick query recording * [Storage] Quick query test case update * [Storage] Resolve comments * regenerate storage-blob * re-generate storage-file-share * regenrate datalake and undo adding mode to storageClient and storageClientContext * update datalake service version to 2019-12-12 * [Storage] QuickQuery - Make BlobQueryCsvTextConfiguration properties optional (#9484) * [storage][blob] blob versioning (#7886) * blob versioning * support 'bv' SAS * add response headers to getProperties & api-extract * fix comments * add versionId to getBlob response headers * fix broken undelete test * undo 'add snapshot to options' * replace withVersionId() with getURLWithVersionId() * Revert "replace withVersionId() with getURLWithVersionId()" This reverts commit eb1d90d34783b7717ca0a6a651ba2c53a637be48. * hide the versionId option in convenience layer * add more tests * fix comments * change version to preview * fix merge error Co-authored-by: Lin Jian <ljian3377@gmail.com> * [storage] added change feed (#9151) * fix * change feed with mininal live tests * mocking tests * format code & rename buildAvroReader parameter name * add README.md * change eventTime type from string to Date * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Jeremy Meng <yumeng@microsoft.com> * PR comments * Rename eTag to etag in BlobChangeFeedEventData * remove hns only properties in change event record * fix minor bug in avro * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * Update sdk/storage/storage-blob-changefeed/README.md Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * rename to BlobChangeFeedGetChangesOptions and fix comments * update api Co-authored-by: Lin Jian <ljian3377@gmail.com> Co-authored-by: Jeremy Meng <yumeng@microsoft.com> Co-authored-by: Brian Terlson <brian.terlson@microsoft.com> * [storage][blob & datalake] Jumbo blob (#9480) * Jumbo putBlock, putBlob, datalake file append * undo upload ArrayBuffer * minor edit Co-authored-by: Lin Jian <ljian3377@gmail.com> * [Storage] Support blob tags (recording will be added later) (#9440) * [Storage] Support blob tags (recording will be added later) * [Storage] Unify blob tags type Tags everywhere in options and responses * [Storage] Blob tags - resolve comments * update service version to 2019-12-12 * blob tags test record * fix listContainer options * wip * record skipped test for Jumbo * set default formatter * me * wip * blob record node * record * add version check for x permission * record for browser * wip * wip * wip * wip * add f for account SAS permission * add permission f, and x for container * wip * me * me * PR comments * me * record changefeed * record with blobversioning disabled * record skipped test for browser * wip * avro compatible with Node v8 * fix test record * fix record * fix ae-forgotten-export * lint * fall back to util for old node.js TextEncoder * release pipeline for change feed * [storage][file] large smb files (#9624) * create large smb files * wip * record test * me Co-authored-by: Lin Jian <ljian3377@gmail.com> * [storage] added set Expiry (#9560) * add set expiry * add check for input * use Date instead of a time string * call blob endpoint directly in datalake * undo evenhub package.json * add alternative version and use number instead of decimal string for expiresOn relative * add timeToExpireInMs to option * use string literals instead of enum * keep old enum for backward compatibility * nit Co-authored-by: Lin Jian <ljian3377@gmail.com> * merge fix * omit doc in storage-internal-avro * Revert "[storage] added set Expiry (#9560)" This reverts commit c3b4414b09539c02266cc16b192f87f3d686dd8e. * nit * skip live tests for blob tags and quick query * change path for ts-samples Co-authored-by: Lin Jian <ljian3377@gmail.com> Co-authored-by: XiaoningLiu <xiaoning.liu.leon@gmail.com> Co-authored-by: Xiaoning Liu <xiaonli@microsoft.com> Co-authored-by: Jeremy Meng <yumeng@microsoft.com> Co-authored-by: Brian Terlson <brian.terlson@microsoft.com>
2020-07-01 05:59:28 +03:00
},
{
"name": "storage-file-datalake",
"path": "sdk/storage/storage-file-datalake"
},
{
"name": "storage-file-share",
"path": "sdk/storage/storage-file-share"
},
{
"name": "storage-internal-avro",
"path": "sdk/storage/storage-internal-avro"
},
{
"name": "storage-queue",
"path": "sdk/storage/storage-queue"
},
{
"name": "synapse-access-control",
"path": "sdk/synapse/synapse-access-control"
},
{
"name": "synapse-artifacts",
"path": "sdk/synapse/synapse-artifacts"
},
{
"name": "synapse-managed-private-endpoints",
"path": "sdk/synapse/synapse-managed-private-endpoints"
},
{
"name": "synapse-monitoring",
"path": "sdk/synapse/synapse-monitoring"
},
{
"name": "synapse-spark",
"path": "sdk/synapse/synapse-spark"
},
{
"name": "tables",
"path": "sdk/tables/data-tables"
},
{
"name": "text analytics",
"path": "sdk/textanalytics/ai-text-analytics"
},
{
"name": "monitor",
"path": "sdk/monitor/monitor-opentelemetry-exporter"
},
{
"name": "test recorder",
"path": "sdk/test-utils/recorder"
},
{
"name": "template",
"path": "sdk/template/template"
},
{
"name": "eslint plugin",
"path": "common/tools/eslint-plugin-azure-sdk"
},
{
"name": "dev tool",
"path": "common/tools/dev-tool"
},
{
"name": "purview-scanning",
"path": "sdk/purview/purview-scanning-rest"
},
{
"name": "perf",
"path": "sdk/test-utils/perf"
},
{
"name": "multi-version test",
"path": "sdk/test-utils/multi-version"
},
{
"name": "digital-twins-core",
"path": "sdk/digitaltwins/digital-twins-core"
},
{
"name": "mixed-reality-authentication",
"path": "sdk/mixedreality/mixed-reality-authentication"
},
{
"name": "attestation",
"path": "sdk/attestation/attestation"
},
{
"path": "sdk/web-pubsub/web-pubsub"
},
{
"path": "sdk/web-pubsub/web-pubsub-express"
},
{
"name": "mixed-reality-remote-rendering",
"path": "sdk/remoterendering/mixed-reality-remote-rendering"
},
{
"path": "sdk/test-utils/test-utils"
},
{
"path": "sdk/purview/purview-administration-rest"
},
{
"path": "sdk/instrumentation/opentelemetry-instrumentation-azure-sdk"
},
{
"path": "sdk/core/core-http-compat"
},
{
"path": "sdk/openai/openai"
}
],
"settings": {
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"javascript.preferences.quoteStyle": "double",
"typescript.preferences.quoteStyle": "double",
"search.exclude": {
"test-results*.xml": true,
"**/temp/*": true,
"**/dist/*": true,
"**/*.map": true,
"**/dist-*/*": true,
"**/test-dist/*": true,
2021-04-07 21:31:38 +03:00
"**/dist-test/*": true,
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/types/*": true,
"**/coverage/*": true,
"**/*.d.ts": true,
"**/test-browser/*": true
},
"typescript.tsdk": "core-http/node_modules/typescript/lib",
"files.exclude": {
"**/node_modules": true
},
"eslint.useFlatConfig": true
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker"
]
}
}