Skip to content

Commit

Permalink
feat(scalar): add @tsed/scalar package
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Dec 8, 2024
1 parent 0bc9e95 commit 0e44167
Show file tree
Hide file tree
Showing 82 changed files with 1,387 additions and 29 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ frameworks:
src: /swagger.svg
- title: Scalar
href: /tutorials/scalar.html
src: /swagger.svg
src: /scalar.svg
- title: Passport
href: /tutorials/passport.html
src: /passportjs.png
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/scalar.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ meta:
<Banner src="/scalar.svg" href="https://scalar.com" :height="200" />

This page shows you how you can configure Scalar with Ts.ED. Scalar uses the OpenApi
to describe a Rest API. Ts.ED operates the existing decorators to build
a spec compliant with Scalar.
to describe a Rest API. Ts.ED uses existing decorators to build
a specification compliant with Scalar.

## Installation

Expand Down Expand Up @@ -126,7 +126,7 @@ export class Server {}

## Model documentation

One of the feature of Ts.ED is the model definition to serialize or deserialize a
One of the features of Ts.ED is the model definition to serialize or deserialize a
JSON Object based on JsonSchema (See [model documentation](/docs/model.md)).

A model can be used on a method controller along with @@BodyParams@@ or other decorators.
Expand All @@ -142,7 +142,7 @@ This example shows you how to use the decorators to generate Scalar documentatio
## Extra parameters

Sometimes you want to display extra `in` parameters like `headers` without consuming it in an endpoint.
It's possible describe extra parameters by using the @@In@@ decorator over the method.
It's possible to describe extra parameters by using the @@In@@ decorator over the method.

<<< @/tutorials/snippets/scalar/endpoint-extra-in-params.ts

Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/swagger.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ meta:
<Banner src="https://swagger.io/swagger/media/assets/images/swagger_logo.svg" href="https://swagger.io/" :height="200" />

This page shows you how you can configure Swagger-ui with Ts.ED. Swagger uses the OpenApi
to describe a Rest API. Ts.ED operates the existing decorators to build
a spec compliant with Swagger.
to describe a Rest API. Ts.ED uses existing decorators to build
a specification compliant with Swagger.

## Installation

Expand Down Expand Up @@ -140,7 +140,7 @@ export class Server {}

## Model documentation

One of the feature of Ts.ED is the model definition to serialize or deserialize a
One of the features of Ts.ED is the model definition to serialize or deserialize a
JSON Object based on JsonSchema (See [model documentation](/docs/model.md)).

A model can be used on a method controller along with @@BodyParams@@ or other decorators.
Expand All @@ -156,7 +156,7 @@ This example shows you how to use the decorators to generate swagger documentati
## Extra parameters

Sometimes you want to display extra `in` parameters like `headers` without consuming it in an endpoint.
It's possible describe extra parameters by using the @@In@@ decorator over the method.
It's possible to describe extra parameters by using the @@In@@ decorator over the method.

<<< @/tutorials/snippets/swagger/endpoint-extra-in-params.ts

Expand Down
1 change: 1 addition & 0 deletions packages/core/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http": ["../platform/platform-http/src/common/index.ts"],
"@tsed/ajv": ["../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/di/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@tsed/platform-http": ["../platform/platform-http/src/common/index.ts"],
"@tsed/ajv": ["../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/engines/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http": ["../platform/platform-http/src/common/index.ts"],
"@tsed/ajv": ["../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/graphql/apollo/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/graphql/typegraphql/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/adapters-redis/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/adapters/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/ioredis/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/mikro-orm/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/mongoose/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/objection/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/orm/prisma/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/common/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@tsed/components-scan": ["../../third-parties/components-scan/src/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-cache/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http": ["../../platform/platform-http/src/common/index.ts"],
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-exceptions/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-express/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-koa": ["../platform-koa/src/index.ts"]
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-http/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@tsed/components-scan": ["../../third-parties/components-scan/src/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-koa/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-log-request/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-middlewares/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-params/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-router/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-serverless/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/platform/platform-views/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/security/jwks/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/security/oidc-provider/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/security/passport/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../../specs/ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../../specs/swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/specs/ajv/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http": ["../../platform/platform-http/src/common/index.ts"],
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
1 change: 1 addition & 0 deletions packages/specs/exceptions/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tsed/platform-http/testing": ["../../platform/platform-http/src/testing/index.ts"],
"@tsed/ajv": ["../ajv/src/index.ts"],
"@tsed/platform-cache": ["../../platform/platform-cache/src/index.ts"],
"@tsed/openapi-utils": ["../specs/openapi-utils/src/index.ts"],
"@tsed/swagger": ["../swagger/src/index.ts"],
"@tsed/platform-test-sdk": ["../../platform/platform-test-sdk/src/index.ts"],
"@tsed/platform-express": ["../../platform/platform-express/src/index.ts"],
Expand Down
Loading

0 comments on commit 0e44167

Please sign in to comment.