@platfformx/proto-contracts 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gen/ts/auth-service/account.js +11 -9
- package/dist/gen/ts/auth-service/auth.js +13 -11
- package/dist/index.d.ts +4 -4
- package/dist/index.js +18 -5
- package/dist/paths/index.js +17 -0
- package/dist/paths/proto-paths.js +8 -0
- package/dist/registry/grpc.registry.js +1 -0
- package/package.json +13 -1
- package/.github/workflows/publish.npm.yml +0 -34
- package/dist/gen/ts/auth-service/account.js.map +0 -1
- package/dist/gen/ts/auth-service/auth.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/src/paths/index.js +0 -2
- package/dist/src/paths/index.js.map +0 -1
- package/dist/src/paths/proto-paths.js +0 -6
- package/dist/src/paths/proto-paths.js.map +0 -1
- package/dist/src/registry/grpc.registry.js +0 -2
- package/dist/src/registry/grpc.registry.js.map +0 -1
- package/eslint.config.mjs +0 -35
- package/index.ts +0 -4
- package/src/paths/index.ts +0 -1
- package/src/paths/proto-paths.ts +0 -6
- package/src/registry/grpc.registry.ts +0 -0
- package/tsconfig.json +0 -19
- /package/dist/{src/paths → paths}/index.d.ts +0 -0
- /package/dist/{src/paths → paths}/proto-paths.d.ts +0 -0
- /package/dist/{src/registry → registry}/grpc.registry.d.ts +0 -0
|
@@ -1,14 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.11.8
|
|
4
5
|
// protoc v7.34.0
|
|
5
6
|
// source: auth-service/account.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.ACCOUNT_SERVICE_NAME = exports.AUTH_SERVICE_V1_PACKAGE_NAME = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AccountServiceControllerMethods = AccountServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export function AccountServiceControllerMethods() {
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = "auth_service.v1";
|
|
13
|
+
exports.AUTH_SERVICE_V1_PACKAGE_NAME = "auth_service.v1";
|
|
14
|
+
function AccountServiceControllerMethods() {
|
|
12
15
|
return function (constructor) {
|
|
13
16
|
const grpcMethods = [
|
|
14
17
|
"getAccount",
|
|
@@ -21,14 +24,13 @@ export function AccountServiceControllerMethods() {
|
|
|
21
24
|
];
|
|
22
25
|
for (const method of grpcMethods) {
|
|
23
26
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
24
|
-
GrpcMethod("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
27
|
+
(0, microservices_1.GrpcMethod)("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
25
28
|
}
|
|
26
29
|
const grpcStreamMethods = [];
|
|
27
30
|
for (const method of grpcStreamMethods) {
|
|
28
31
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
29
|
-
GrpcStreamMethod("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
32
|
+
(0, microservices_1.GrpcStreamMethod)("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
30
33
|
}
|
|
31
34
|
};
|
|
32
35
|
}
|
|
33
|
-
|
|
34
|
-
//# sourceMappingURL=account.js.map
|
|
36
|
+
exports.ACCOUNT_SERVICE_NAME = "AccountService";
|
|
@@ -1,35 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
3
|
// versions:
|
|
3
4
|
// protoc-gen-ts_proto v2.11.8
|
|
4
5
|
// protoc v7.34.0
|
|
5
6
|
// source: auth-service/auth.proto
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.AUTH_SERVICE_NAME = exports.AUTH_SERVICE_V1_PACKAGE_NAME = exports.OAuthProvider = exports.protobufPackage = void 0;
|
|
9
|
+
exports.AuthServiceControllerMethods = AuthServiceControllerMethods;
|
|
6
10
|
/* eslint-disable */
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export const protobufPackage = "auth_service.v1";
|
|
11
|
+
const microservices_1 = require("@nestjs/microservices");
|
|
12
|
+
exports.protobufPackage = "auth_service.v1";
|
|
10
13
|
/** Shared */
|
|
11
|
-
|
|
14
|
+
var OAuthProvider;
|
|
12
15
|
(function (OAuthProvider) {
|
|
13
16
|
OAuthProvider[OAuthProvider["OAUTH_PROVIDER_UNSPECIFIED"] = 0] = "OAUTH_PROVIDER_UNSPECIFIED";
|
|
14
17
|
OAuthProvider[OAuthProvider["OAUTH_PROVIDER_GOOGLE"] = 1] = "OAUTH_PROVIDER_GOOGLE";
|
|
15
18
|
OAuthProvider[OAuthProvider["OAUTH_PROVIDER_GITHUB"] = 2] = "OAUTH_PROVIDER_GITHUB";
|
|
16
19
|
OAuthProvider[OAuthProvider["OAUTH_PROVIDER_TELEGRAM"] = 3] = "OAUTH_PROVIDER_TELEGRAM";
|
|
17
20
|
OAuthProvider[OAuthProvider["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
18
|
-
})(OAuthProvider || (OAuthProvider = {}));
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
})(OAuthProvider || (exports.OAuthProvider = OAuthProvider = {}));
|
|
22
|
+
exports.AUTH_SERVICE_V1_PACKAGE_NAME = "auth_service.v1";
|
|
23
|
+
function AuthServiceControllerMethods() {
|
|
21
24
|
return function (constructor) {
|
|
22
25
|
const grpcMethods = ["createAccount", "authenticate", "authenticateWithOAuth", "refreshTokens"];
|
|
23
26
|
for (const method of grpcMethods) {
|
|
24
27
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
25
|
-
GrpcMethod("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
28
|
+
(0, microservices_1.GrpcMethod)("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
26
29
|
}
|
|
27
30
|
const grpcStreamMethods = [];
|
|
28
31
|
for (const method of grpcStreamMethods) {
|
|
29
32
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
30
|
-
GrpcStreamMethod("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
33
|
+
(0, microservices_1.GrpcStreamMethod)("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
31
34
|
}
|
|
32
35
|
};
|
|
33
36
|
}
|
|
34
|
-
|
|
35
|
-
//# sourceMappingURL=auth.js.map
|
|
37
|
+
exports.AUTH_SERVICE_NAME = "AuthService";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * as Auth from './gen/ts/auth-service/auth';
|
|
4
|
-
export * as Account from './gen/ts/auth-service/account';
|
|
1
|
+
export * from './paths/index';
|
|
2
|
+
export * from './paths/proto-paths';
|
|
3
|
+
export type * as Auth from './gen/ts/auth-service/auth';
|
|
4
|
+
export type * as Account from './gen/ts/auth-service/account';
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./paths/index"), exports);
|
|
18
|
+
__exportStar(require("./paths/proto-paths"), exports);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./proto-paths"), exports);
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PROTO_PATHS = void 0;
|
|
4
|
+
const path_1 = require("path");
|
|
5
|
+
exports.PROTO_PATHS = {
|
|
6
|
+
ACCOUNT: (0, path_1.join)(__dirname, '../../proto/auth-service/account.proto'),
|
|
7
|
+
AUTH: (0, path_1.join)(__dirname, '../../proto/auth-service/auth.proto'),
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platfformx/proto-contracts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"proto",
|
|
10
|
+
"gen"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
7
19
|
"publishConfig": {
|
|
8
20
|
"access": "public"
|
|
9
21
|
},
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
name: Publish Build
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
build:
|
|
10
|
-
name: Build job
|
|
11
|
-
runs-on: ubuntu-latest
|
|
12
|
-
|
|
13
|
-
steps:
|
|
14
|
-
- name: Checkout repository
|
|
15
|
-
uses: actions/checkout@v4
|
|
16
|
-
|
|
17
|
-
- name: Setup Node.js
|
|
18
|
-
uses: actions/setup-node@v4
|
|
19
|
-
with:
|
|
20
|
-
node-version: 20
|
|
21
|
-
|
|
22
|
-
- name: Install protoc
|
|
23
|
-
run: |
|
|
24
|
-
sudo apt-get update
|
|
25
|
-
sudo apt-get install -y protobuf-compiler
|
|
26
|
-
|
|
27
|
-
- name: Install dependencies
|
|
28
|
-
run: yarn install --frozen-lockfile
|
|
29
|
-
|
|
30
|
-
- name: Generate Ts protobuf
|
|
31
|
-
run: yarn run generate
|
|
32
|
-
|
|
33
|
-
- name: Build
|
|
34
|
-
run: yarn run build
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../../../gen/ts/auth-service/account.ts"],"names":[],"mappings":"AAAA,sDAAsD;AACtD,YAAY;AACZ,iCAAiC;AACjC,iCAAiC;AACjC,qCAAqC;AAErC,oBAAoB;AACpB,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,MAAM,CAAC,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAwFjD,MAAM,CAAC,MAAM,4BAA4B,GAAG,iBAAiB,CAAC;AA8C9D,MAAM,UAAU,+BAA+B;IAC7C,OAAO,UAAU,WAAqB;QACpC,MAAM,WAAW,GAAa;YAC5B,YAAY;YACZ,cAAc;YACd,iBAAiB;YACjB,iBAAiB;YACjB,oBAAoB;YACpB,oBAAoB;YACpB,WAAW;SACZ,CAAC;QACF,KAAK,MAAM,MAAM,IAAI,WAAW,EAAE,CAAC;YACjC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,UAAU,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;QAC1F,CAAC;QACD,MAAM,iBAAiB,GAAa,EAAE,CAAC;QACvC,KAAK,MAAM,MAAM,IAAI,iBAAiB,EAAE,CAAC;YACvC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,gBAAgB,CAAC,gBAAgB,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;QAChG,CAAC;IACH,CAAC,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,MAAM,oBAAoB,GAAG,gBAAgB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../../gen/ts/auth-service/auth.ts"],"names":[],"mappings":"AAAA,sDAAsD;AACtD,YAAY;AACZ,iCAAiC;AACjC,iCAAiC;AACjC,kCAAkC;AAElC,oBAAoB;AACpB,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,MAAM,CAAC,MAAM,eAAe,GAAG,iBAAiB,CAAC;AAEjD,aAAa;AACb,MAAM,CAAN,IAAY,aAMX;AAND,WAAY,aAAa;IACvB,6FAA8B,CAAA;IAC9B,mFAAyB,CAAA;IACzB,mFAAyB,CAAA;IACzB,uFAA2B,CAAA;IAC3B,kEAAiB,CAAA;AACnB,CAAC,EANW,aAAa,KAAb,aAAa,QAMxB;AAgED,MAAM,CAAC,MAAM,4BAA4B,GAAG,iBAAiB,CAAC;AA8B9D,MAAM,UAAU,4BAA4B;IAC1C,OAAO,UAAU,WAAqB;QACpC,MAAM,WAAW,GAAa,CAAC,eAAe,EAAE,cAAc,EAAE,uBAAuB,EAAE,eAAe,CAAC,CAAC;QAC1G,KAAK,MAAM,MAAM,IAAI,WAAW,EAAE,CAAC;YACjC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,UAAU,CAAC,aAAa,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;QACvF,CAAC;QACD,MAAM,iBAAiB,GAAa,EAAE,CAAC;QACvC,KAAK,MAAM,MAAM,IAAI,iBAAiB,EAAE,CAAC;YACvC,MAAM,UAAU,GAAQ,OAAO,CAAC,wBAAwB,CAAC,WAAW,CAAC,SAAS,EAAE,MAAM,CAAC,CAAC;YACxF,gBAAgB,CAAC,aAAa,EAAE,MAAM,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;QAC7F,CAAC;IACH,CAAC,CAAC;AACJ,CAAC;AAED,MAAM,CAAC,MAAM,iBAAiB,GAAG,aAAa,CAAC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,OAAO,KAAK,IAAI,MAAM,4BAA4B,CAAC;AACnD,OAAO,KAAK,OAAO,MAAM,+BAA+B,CAAC"}
|
package/dist/src/paths/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/paths/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"proto-paths.js","sourceRoot":"","sources":["../../../src/paths/proto-paths.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAE5B,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,OAAO,EAAE,IAAI,CAAC,SAAS,EAAE,wCAAwC,CAAC;IAClE,IAAI,EAAE,IAAI,CAAC,SAAS,EAAE,qCAAqC,CAAC;CACpD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"grpc.registry.js","sourceRoot":"","sources":["../../../src/registry/grpc.registry.ts"],"names":[],"mappings":""}
|
package/eslint.config.mjs
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
// @ts-check
|
|
2
|
-
import eslint from '@eslint/js';
|
|
3
|
-
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
|
|
4
|
-
import globals from 'globals';
|
|
5
|
-
import tseslint from 'typescript-eslint';
|
|
6
|
-
|
|
7
|
-
export default tseslint.config(
|
|
8
|
-
{
|
|
9
|
-
ignores: ['eslint.config.mjs', 'dist/**'],
|
|
10
|
-
},
|
|
11
|
-
eslint.configs.recommended,
|
|
12
|
-
...tseslint.configs.recommendedTypeChecked,
|
|
13
|
-
eslintPluginPrettierRecommended,
|
|
14
|
-
{
|
|
15
|
-
languageOptions: {
|
|
16
|
-
globals: {
|
|
17
|
-
...globals.node,
|
|
18
|
-
...globals.jest,
|
|
19
|
-
},
|
|
20
|
-
sourceType: 'commonjs',
|
|
21
|
-
parserOptions: {
|
|
22
|
-
projectService: true,
|
|
23
|
-
tsconfigRootDir: import.meta.dirname,
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
rules: {
|
|
29
|
-
'@typescript-eslint/no-explicit-any': 'off',
|
|
30
|
-
'@typescript-eslint/no-floating-promises': 'warn',
|
|
31
|
-
'@typescript-eslint/no-unsafe-argument': 'warn',
|
|
32
|
-
'prettier/prettier': ['error', { endOfLine: 'auto' }],
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
);
|
package/index.ts
DELETED
package/src/paths/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './proto-paths';
|
package/src/paths/proto-paths.ts
DELETED
|
File without changes
|
package/tsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "esnext",
|
|
4
|
-
"moduleResolution": "bundler",
|
|
5
|
-
"target": "esnext",
|
|
6
|
-
"types": ["node"],
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"outDir": "./dist",
|
|
10
|
-
"rootDir": ".",
|
|
11
|
-
"strictNullChecks": false,
|
|
12
|
-
"noUncheckedIndexedAccess": true,
|
|
13
|
-
"strict": true,
|
|
14
|
-
"verbatimModuleSyntax": true,
|
|
15
|
-
"strictNullChecks": false,
|
|
16
|
-
"skipLibCheck": true
|
|
17
|
-
},
|
|
18
|
-
"include": ["src/**/*", "gen/**/*", "index.ts"]
|
|
19
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|