easywork-common-lib 1.0.411 → 1.0.413

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/.gitattributes CHANGED
@@ -1,2 +1,2 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -1,33 +1,33 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
-
4
- name: Node.js Package
5
-
6
- on:
7
- release:
8
- types: [created]
9
-
10
- jobs:
11
- build:
12
- runs-on: ubuntu-latest
13
- steps:
14
- - uses: actions/checkout@v4
15
- - uses: actions/setup-node@v4
16
- with:
17
- node-version: 20
18
- - run: npm ci
19
- - run: npm test
20
-
21
- publish-npm:
22
- needs: build
23
- runs-on: ubuntu-latest
24
- steps:
25
- - uses: actions/checkout@v4
26
- - uses: actions/setup-node@v4
27
- with:
28
- node-version: 20
29
- registry-url: https://registry.npmjs.org/
30
- - run: npm ci
31
- - run: npm publish
32
- env:
33
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Node.js Package
5
+
6
+ on:
7
+ release:
8
+ types: [created]
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20
18
+ - run: npm ci
19
+ - run: npm test
20
+
21
+ publish-npm:
22
+ needs: build
23
+ runs-on: ubuntu-latest
24
+ steps:
25
+ - uses: actions/checkout@v4
26
+ - uses: actions/setup-node@v4
27
+ with:
28
+ node-version: 20
29
+ registry-url: https://registry.npmjs.org/
30
+ - run: npm ci
31
+ - run: npm publish
32
+ env:
33
+ NODE_AUTH_TOKEN: ${{secrets.npm_token}}
@@ -1,13 +1,13 @@
1
- {
2
- "autoBarrel.language.defaultLanguage": "TypeScript",
3
- "autoBarrel.files.disableRecursiveBarrelling": false,
4
- "autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
5
- "autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
6
- "autoBarrel.files.keepExtensionOnExport": false,
7
- "autoBarrel.files.detectExportsInFiles": false,
8
- "autoBarrel.files.exportDefaultFilename": "filename",
9
- "autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
10
- "autoBarrel.formatting.useSingleQuotes": true,
11
- "autoBarrel.formatting.endOfLine": "lf",
12
- "autoBarrel.formatting.insertFinalNewline": true,
1
+ {
2
+ "autoBarrel.language.defaultLanguage": "TypeScript",
3
+ "autoBarrel.files.disableRecursiveBarrelling": false,
4
+ "autoBarrel.files.includeExtensionOnExport": ["ts", "tsx", "vue"],
5
+ "autoBarrel.files.ignoreFilePathPatternOnExport": ["**/*.spec.*", "**/*.test.*"],
6
+ "autoBarrel.files.keepExtensionOnExport": false,
7
+ "autoBarrel.files.detectExportsInFiles": false,
8
+ "autoBarrel.files.exportDefaultFilename": "filename",
9
+ "autoBarrel.formatting.excludeSemiColonAtEndOfLine": false,
10
+ "autoBarrel.formatting.useSingleQuotes": true,
11
+ "autoBarrel.formatting.endOfLine": "lf",
12
+ "autoBarrel.formatting.insertFinalNewline": true,
13
13
  }
@@ -1,7 +1,7 @@
1
1
  export declare enum StatusSiniestro {
2
- LIQUIDADO = "liquidado",
2
+ LIQUIDADO = "pagado",
3
3
  VIGENTE = "vigente",
4
- ANULADO = "anulado",
4
+ ANULADO = "cancelado",
5
5
  VENCIDO = "vencido"
6
6
  }
7
7
  export declare enum PolizaStatus {
@@ -12,9 +12,9 @@ export declare enum PolizaStatus {
12
12
  }
13
13
  export declare enum ReceiptStatus {
14
14
  VIGENTE = "vigente",
15
- ANULADO = "anulado",
15
+ ANULADO = "cancelado",
16
16
  VENCIDO = "vencido",
17
- APLICADO = "aplicado"
17
+ APLICADO = "pagado"
18
18
  }
19
19
  export declare enum ReceiptMethodPayment {
20
20
  EFECTIVO = "efectivo",
@@ -31,7 +31,7 @@ export declare enum PolizaDiasPlazoPago {
31
31
  }
32
32
  export declare enum ReceiptStageStatus {
33
33
  VIGENTE = "vigente",
34
- ANULADO = "anulado",
34
+ ANULADO = "cancelado",
35
35
  VENCIDO = "vencido",
36
36
  PAGADO = "pagado"
37
37
  }
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CommentType = exports.ReceiptStageStatus = exports.PolizaDiasPlazoPago = exports.PersonType = exports.ReceiptMethodPayment = exports.ReceiptStatus = exports.PolizaStatus = exports.StatusSiniestro = void 0;
4
4
  var StatusSiniestro;
5
5
  (function (StatusSiniestro) {
6
- StatusSiniestro["LIQUIDADO"] = "liquidado";
6
+ StatusSiniestro["LIQUIDADO"] = "pagado";
7
7
  StatusSiniestro["VIGENTE"] = "vigente";
8
- StatusSiniestro["ANULADO"] = "anulado";
8
+ StatusSiniestro["ANULADO"] = "cancelado";
9
9
  StatusSiniestro["VENCIDO"] = "vencido";
10
10
  })(StatusSiniestro || (exports.StatusSiniestro = StatusSiniestro = {}));
11
11
  var PolizaStatus;
@@ -18,9 +18,9 @@ var PolizaStatus;
18
18
  var ReceiptStatus;
19
19
  (function (ReceiptStatus) {
20
20
  ReceiptStatus["VIGENTE"] = "vigente";
21
- ReceiptStatus["ANULADO"] = "anulado";
21
+ ReceiptStatus["ANULADO"] = "cancelado";
22
22
  ReceiptStatus["VENCIDO"] = "vencido";
23
- ReceiptStatus["APLICADO"] = "aplicado";
23
+ ReceiptStatus["APLICADO"] = "pagado";
24
24
  })(ReceiptStatus || (exports.ReceiptStatus = ReceiptStatus = {}));
25
25
  var ReceiptMethodPayment;
26
26
  (function (ReceiptMethodPayment) {
@@ -41,7 +41,7 @@ var PolizaDiasPlazoPago;
41
41
  var ReceiptStageStatus;
42
42
  (function (ReceiptStageStatus) {
43
43
  ReceiptStageStatus["VIGENTE"] = "vigente";
44
- ReceiptStageStatus["ANULADO"] = "anulado";
44
+ ReceiptStageStatus["ANULADO"] = "cancelado";
45
45
  ReceiptStageStatus["VENCIDO"] = "vencido";
46
46
  ReceiptStageStatus["PAGADO"] = "pagado";
47
47
  })(ReceiptStageStatus || (exports.ReceiptStageStatus = ReceiptStageStatus = {}));
@@ -1 +1 @@
1
- {"version":3,"file":"sales.enum.js","sourceRoot":"","sources":["../../../src/common/enums/sales.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,0CAAuB,CAAA;IACvB,sCAAmB,CAAA;IACnB,sCAAmB,CAAA;IACnB,sCAAmB,CAAA;AACvB,CAAC,EALW,eAAe,+BAAf,eAAe,QAK1B;AAED,IAAY,YAKX;AALD,WAAY,YAAY;IACpB,iCAAiB,CAAA;IACjB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;IACvB,wCAAwB,CAAA;AAC5B,CAAC,EALW,YAAY,4BAAZ,YAAY,QAKvB;AAED,IAAY,aAKX;AALD,WAAY,aAAa;IACrB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,sCAAqB,CAAA;AACzB,CAAC,EALW,aAAa,6BAAb,aAAa,QAKxB;AAED,IAAY,oBAIX;AAJD,WAAY,oBAAoB;IAC5B,6CAAqB,CAAA;IACrB,2DAAmC,CAAA;IACnC,yDAAiC,CAAA;AACrC,CAAC,EAJW,oBAAoB,oCAApB,oBAAoB,QAI/B;AAED,IAAY,UAGX;AAHD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,6BAAe,CAAA;AACnB,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAED,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,mCAAY,CAAA;IACZ,mCAAY,CAAA;AAChB,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B;AAED,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC1B,yCAAmB,CAAA;IACnB,yCAAmB,CAAA;IACnB,yCAAmB,CAAA;IACnB,uCAAiB,CAAA;AACrB,CAAC,EALW,kBAAkB,kCAAlB,kBAAkB,QAK7B;AAED,IAAa,WAGZ;AAHD,WAAa,WAAW;IACpB,4BAAa,CAAA;IACb,gCAAiB,CAAA;AACrB,CAAC,EAHY,WAAW,2BAAX,WAAW,QAGvB"}
1
+ {"version":3,"file":"sales.enum.js","sourceRoot":"","sources":["../../../src/common/enums/sales.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAKX;AALD,WAAY,eAAe;IACvB,uCAAoB,CAAA;IACpB,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,sCAAmB,CAAA;AACvB,CAAC,EALW,eAAe,+BAAf,eAAe,QAK1B;AAED,IAAY,YAKX;AALD,WAAY,YAAY;IACpB,iCAAiB,CAAA;IACjB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;IACvB,wCAAwB,CAAA;AAC5B,CAAC,EALW,YAAY,4BAAZ,YAAY,QAKvB;AAED,IAAY,aAKX;AALD,WAAY,aAAa;IACrB,oCAAmB,CAAA;IACnB,sCAAqB,CAAA;IACrB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;AACvB,CAAC,EALW,aAAa,6BAAb,aAAa,QAKxB;AAED,IAAY,oBAIX;AAJD,WAAY,oBAAoB;IAC5B,6CAAqB,CAAA;IACrB,2DAAmC,CAAA;IACnC,yDAAiC,CAAA;AACrC,CAAC,EAJW,oBAAoB,oCAApB,oBAAoB,QAI/B;AAED,IAAY,UAGX;AAHD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,6BAAe,CAAA;AACnB,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAED,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,mCAAY,CAAA;IACZ,mCAAY,CAAA;AAChB,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B;AAED,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC1B,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,yCAAmB,CAAA;IACnB,uCAAiB,CAAA;AACrB,CAAC,EALW,kBAAkB,kCAAlB,kBAAkB,QAK7B;AAED,IAAY,WAGX;AAHD,WAAY,WAAW;IACnB,4BAAa,CAAA;IACb,gCAAiB,CAAA;AACrB,CAAC,EAHW,WAAW,2BAAX,WAAW,QAGtB"}
@@ -1,74 +1,89 @@
1
- // drive/proto/drive.proto
2
- syntax = "proto3";
3
-
4
- package drive;
5
-
6
- message OwnerEntity {
7
- string ownerId = 1;
8
- string entityType = 2;
9
- string relation = 3;
10
- }
11
-
12
- // Define los mensajes para las operaciones de carpetas
13
- message CreateFolderRequest {
14
- string name = 1;
15
- string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
16
- repeated OwnerEntity ownersData = 3;
17
- }
18
-
19
- // Create Bulk Folder
20
- message CreateFolderBulkRequest {
21
- repeated string foldersName = 1;
22
- string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
23
- repeated OwnerEntity ownersData = 3;
24
- }
25
-
26
- message FolderResponse {
27
- string id = 1;
28
- string name = 2;
29
- string parentId = 3; // Opcional, puede ser nulo si es una carpeta raíz
30
- string createdAt = 4;
31
- }
32
-
33
-
34
- message CreateFolderBulkResponse {
35
- bool success = 1;
36
- }
37
-
38
- message CreateFileRequest {
39
- string name = 1; // Nombre del archivo
40
- string folderId = 2; // UUID del folder, opcional
41
- int64 size = 3; // Tamaño del archivo, opcional
42
- string mimeType = 4; // Tipo MIME del archivo, opcional
43
- string s3Key = 5; // Clave S3, opcional
44
- bool isDefault = 6; // Si es el archivo por defecto, opcional
45
- repeated OwnerEntity ownersData = 7;
46
- bytes filecontent = 8; // Contenido del archivo en bytes
47
- string encoding = 9; // Codificación del archivo
48
- }
49
-
50
- message AttachFileRequest {
51
-
52
- }
53
-
54
- message CreateFilesRequest {
55
- repeated CreateFileRequest files = 1; // Archivos
56
- }
57
-
58
- message CreateFilesResponse {
59
- repeated string filesIds = 1;
60
- }
61
-
62
- message CreateFileResponse {
63
- string message = 1;
64
- bool success = 2;
65
- string url = 3; // URL del archivo almacenado
66
- }
67
-
68
- // Define el servicio que será implementado
69
- service DriveService {
70
- rpc CreateFolder(CreateFolderRequest) returns (FolderResponse);
71
- rpc CreateFile(CreateFileRequest) returns (CreateFileResponse);
72
- rpc CreateFiles(CreateFilesRequest) returns (CreateFilesResponse);
73
- rpc CreateFolders(CreateFolderBulkRequest) returns (CreateFolderBulkResponse);
1
+ import "google/protobuf/struct.proto";
2
+
3
+ // drive/proto/drive.proto
4
+ syntax = "proto3";
5
+
6
+ package drive;
7
+
8
+ message FolderObject {
9
+ string name = 1; // Nombre de la carpeta
10
+ google.protobuf.Struct metadata = 2; // Metadata como objeto dinámico
11
+ }
12
+
13
+ message FolderData {
14
+ oneof folder {
15
+ string name = 1; // Si solo es un nombre simple
16
+ FolderObject folderObject = 2; // Si es un objeto complejo con metadata
17
+ }
18
+ }
19
+
20
+ message OwnerEntity {
21
+ string ownerId = 1;
22
+ string entityType = 2;
23
+ string relation = 3;
24
+ }
25
+
26
+ // Define los mensajes para las operaciones de carpetas
27
+ message CreateFolderRequest {
28
+ string name = 1;
29
+ string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
30
+ repeated OwnerEntity ownersData = 3;
31
+ google.protobuf.Struct metadata = 2; // Metadata como objeto dinámico
32
+ }
33
+
34
+ // Create Bulk Folder
35
+ message CreateFolderBulkRequest {
36
+ repeated FolderData folders = 1;
37
+ string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
38
+ repeated OwnerEntity ownersData = 3;
39
+ }
40
+
41
+ message FolderResponse {
42
+ string id = 1;
43
+ string name = 2;
44
+ string parentId = 3; // Opcional, puede ser nulo si es una carpeta raíz
45
+ string createdAt = 4;
46
+ }
47
+
48
+
49
+ message CreateFolderBulkResponse {
50
+ bool success = 1;
51
+ }
52
+
53
+ message CreateFileRequest {
54
+ string name = 1; // Nombre del archivo
55
+ string folderId = 2; // UUID del folder, opcional
56
+ int64 size = 3; // Tamaño del archivo, opcional
57
+ string mimeType = 4; // Tipo MIME del archivo, opcional
58
+ string s3Key = 5; // Clave S3, opcional
59
+ bool isDefault = 6; // Si es el archivo por defecto, opcional
60
+ repeated OwnerEntity ownersData = 7;
61
+ bytes filecontent = 8; // Contenido del archivo en bytes
62
+ string encoding = 9; // Codificación del archivo
63
+ }
64
+
65
+ message AttachFileRequest {
66
+
67
+ }
68
+
69
+ message CreateFilesRequest {
70
+ repeated CreateFileRequest files = 1; // Archivos
71
+ }
72
+
73
+ message CreateFilesResponse {
74
+ repeated string filesIds = 1;
75
+ }
76
+
77
+ message CreateFileResponse {
78
+ string message = 1;
79
+ bool success = 2;
80
+ string url = 3; // URL del archivo almacenado
81
+ }
82
+
83
+ // Define el servicio que será implementado
84
+ service DriveService {
85
+ rpc CreateFolder(CreateFolderRequest) returns (FolderResponse);
86
+ rpc CreateFile(CreateFileRequest) returns (CreateFileResponse);
87
+ rpc CreateFiles(CreateFilesRequest) returns (CreateFilesResponse);
88
+ rpc CreateFolders(CreateFolderBulkRequest) returns (CreateFolderBulkResponse);
74
89
  }
package/justfile CHANGED
@@ -1,8 +1,8 @@
1
-
2
- # prints all available commands
3
- default:
4
- just --list
5
-
6
- # Upgrade and publish
7
- bump:
8
- pnpm bump
1
+
2
+ # prints all available commands
3
+ default:
4
+ just --list
5
+
6
+ # Upgrade and publish
7
+ bump:
8
+ pnpm bump
package/package.json CHANGED
@@ -1,42 +1,42 @@
1
- {
2
- "name": "easywork-common-lib",
3
- "version": "1.0.411",
4
- "description": "Librería común de Easywork",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "build": "tsc && cpx-fixed src/**/*.proto dist/",
8
- "bump": "./scripts/bump.sh"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/criptopreto/easywork-common-lib.git"
13
- },
14
- "keywords": [
15
- "nodejs"
16
- ],
17
- "author": "Rosmer Campos",
18
- "license": "MIT",
19
- "bugs": {
20
- "url": "https://github.com/criptopreto/easywork-common-lib/issues"
21
- },
22
- "homepage": "https://github.com/criptopreto/easywork-common-lib#readme",
23
- "dependencies": {
24
- "@golevelup/nestjs-rabbitmq": "^5.3.0",
25
- "@nestjs/common": "^10.3.8",
26
- "@nestjs/swagger": "^7.4.0",
27
- "@nestjs/typeorm": "^10.0.2",
28
- "class-transformer": "^0.5.1",
29
- "class-validator": "^0.14.1",
30
- "nanoid": "3",
31
- "rxjs": "^7.8.1",
32
- "sharp": "^0.33.5",
33
- "typeorm": "^0.3.20"
34
- },
35
- "devDependencies": {
36
- "@rubiin/tsconfig": "^1.1.2",
37
- "@types/node": "^20.12.12",
38
- "cpx-fixed": "^1.6.0",
39
- "ts-loader": "^9.5.1",
40
- "typescript": "^5.4.5"
41
- }
42
- }
1
+ {
2
+ "name": "easywork-common-lib",
3
+ "version": "1.0.413",
4
+ "description": "Librería común de Easywork",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "build": "tsc && cpx-fixed src/**/*.proto dist/",
8
+ "bump": "./scripts/bump.sh"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/criptopreto/easywork-common-lib.git"
13
+ },
14
+ "keywords": [
15
+ "nodejs"
16
+ ],
17
+ "author": "Rosmer Campos",
18
+ "license": "MIT",
19
+ "bugs": {
20
+ "url": "https://github.com/criptopreto/easywork-common-lib/issues"
21
+ },
22
+ "homepage": "https://github.com/criptopreto/easywork-common-lib#readme",
23
+ "dependencies": {
24
+ "@golevelup/nestjs-rabbitmq": "^5.3.0",
25
+ "@nestjs/common": "^10.3.8",
26
+ "@nestjs/swagger": "^7.4.0",
27
+ "@nestjs/typeorm": "^10.0.2",
28
+ "class-transformer": "^0.5.1",
29
+ "class-validator": "^0.14.1",
30
+ "nanoid": "3",
31
+ "rxjs": "^7.8.1",
32
+ "sharp": "^0.33.5",
33
+ "typeorm": "^0.3.20"
34
+ },
35
+ "devDependencies": {
36
+ "@rubiin/tsconfig": "^1.1.2",
37
+ "@types/node": "^20.12.12",
38
+ "cpx-fixed": "^1.6.0",
39
+ "ts-loader": "^9.5.1",
40
+ "typescript": "^5.4.5"
41
+ }
42
+ }
package/scripts/bump.sh CHANGED
@@ -1,6 +1,6 @@
1
- git add .
2
- git commit -m "bump version"
3
- pnpm version patch
4
- pnpm build
5
- pnpm publish
1
+ git add .
2
+ git commit -m "bump version"
3
+ yarn version patch
4
+ yarn build
5
+ yarn publish
6
6
  git push
package/test.bat CHANGED
@@ -1,16 +1,16 @@
1
- @echo off
2
- setlocal enabledelayedexpansion
3
-
4
- rem Define the root directory
5
- set "root=C:\Users\ROSME\Documents\GitHub\easywork-common-lib"
6
-
7
- rem Iterate through all directories and subdirectories
8
- for /f "delims=" %%d in ('dir "%root%" /ad /b /s') do (
9
- rem Check if the directory name contains node_modules
10
- echo %%d | findstr /i /c:"\node_modules" >nul
11
- echo %%d | findstr /i /c:"\.git" >nul
12
- if errorlevel 1 (
13
- rem If not, list the directory contents
14
- dir "%%d"
15
- )
1
+ @echo off
2
+ setlocal enabledelayedexpansion
3
+
4
+ rem Define the root directory
5
+ set "root=C:\Users\ROSME\Documents\GitHub\easywork-common-lib"
6
+
7
+ rem Iterate through all directories and subdirectories
8
+ for /f "delims=" %%d in ('dir "%root%" /ad /b /s') do (
9
+ rem Check if the directory name contains node_modules
10
+ echo %%d | findstr /i /c:"\node_modules" >nul
11
+ echo %%d | findstr /i /c:"\.git" >nul
12
+ if errorlevel 1 (
13
+ rem If not, list the directory contents
14
+ dir "%%d"
15
+ )
16
16
  )
@@ -1,4 +1,4 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "eslint.config.js"]
4
- }
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "exclude": ["node_modules", "test", "dist", "**/*spec.ts", "eslint.config.js"]
4
+ }
package/tsconfig.json CHANGED
@@ -1,26 +1,26 @@
1
- {
2
- "extends": "@rubiin/tsconfig",
3
- "compilerOptions": {
4
- "module": "commonjs",
5
- "declaration": true,
6
- "removeComments": true,
7
- "emitDecoratorMetadata": true,
8
- "experimentalDecorators": true,
9
- "allowSyntheticDefaultImports": true,
10
- "target": "ES2022",
11
- "sourceMap": true,
12
- "outDir": "./dist",
13
- "rootDir": "./src",
14
- "baseUrl": "./src",
15
- "incremental": true,
16
- "strict": true,
17
- "skipLibCheck": true,
18
- "strictNullChecks": false,
19
- "noImplicitAny": false,
20
- "strictBindCallApply": false,
21
- "forceConsistentCasingInFileNames": true,
22
- "noFallthroughCasesInSwitch": false
23
- },
24
- "include": ["test/**/*", "src/**/*", "eslint.config.js"],
25
- "typeRoots": ["./src/common/@types/typings"]
1
+ {
2
+ "extends": "@rubiin/tsconfig",
3
+ "compilerOptions": {
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "removeComments": true,
7
+ "emitDecoratorMetadata": true,
8
+ "experimentalDecorators": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "target": "ES2022",
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "rootDir": "./src",
14
+ "baseUrl": "./src",
15
+ "incremental": true,
16
+ "strict": true,
17
+ "skipLibCheck": true,
18
+ "strictNullChecks": false,
19
+ "noImplicitAny": false,
20
+ "strictBindCallApply": false,
21
+ "forceConsistentCasingInFileNames": true,
22
+ "noFallthroughCasesInSwitch": false
23
+ },
24
+ "include": ["test/**/*", "src/**/*", "eslint.config.js"],
25
+ "typeRoots": ["./src/common/@types/typings"]
26
26
  }