@edirect/config 11.0.8 → 11.0.10

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.
Files changed (51) hide show
  1. package/dist/cjs/README.md +13 -0
  2. package/dist/cjs/package.json +3 -0
  3. package/dist/cjs/src/config/config.constants.js +4 -0
  4. package/dist/cjs/src/config/config.interfaces.js +2 -0
  5. package/dist/cjs/src/config/config.module.js +17 -0
  6. package/dist/cjs/src/config/config.providers.js +15 -0
  7. package/dist/cjs/src/config/config.service.js +23 -0
  8. package/dist/cjs/src/index.js +6 -0
  9. package/dist/esm/README.md +13 -0
  10. package/dist/esm/package.json +3 -0
  11. package/dist/types/src/config/config.constants.d.ts.map +1 -0
  12. package/dist/types/src/config/config.interfaces.d.ts.map +1 -0
  13. package/dist/types/src/config/config.module.d.ts.map +1 -0
  14. package/dist/types/src/config/config.providers.d.ts.map +1 -0
  15. package/dist/types/src/config/config.service.d.ts.map +1 -0
  16. package/dist/types/src/index.d.ts.map +1 -0
  17. package/package.json +57 -14
  18. package/.spec.swcrc +0 -22
  19. package/.swcrc +0 -29
  20. package/dist/package.json +0 -41
  21. package/dist/src/config/config.constants.d.ts.map +0 -1
  22. package/dist/src/config/config.interfaces.d.ts.map +0 -1
  23. package/dist/src/config/config.module.d.ts.map +0 -1
  24. package/dist/src/config/config.providers.d.ts.map +0 -1
  25. package/dist/src/config/config.service.d.ts.map +0 -1
  26. package/dist/src/index.d.ts.map +0 -1
  27. package/dist/tsconfig.lib.tsbuildinfo +0 -1
  28. package/eslint.config.mjs +0 -19
  29. package/jest.config.ts +0 -21
  30. package/rollup.config.cjs +0 -16
  31. package/src/config/config.constants.ts +0 -1
  32. package/src/config/config.interfaces.ts +0 -3
  33. package/src/config/config.module.ts +0 -11
  34. package/src/config/config.providers.ts +0 -17
  35. package/src/config/config.service.ts +0 -23
  36. package/src/index.ts +0 -3
  37. package/tsconfig.json +0 -13
  38. package/tsconfig.lib.json +0 -18
  39. package/tsconfig.spec.json +0 -21
  40. /package/dist/{src → esm/src}/config/config.constants.js +0 -0
  41. /package/dist/{src → esm/src}/config/config.interfaces.js +0 -0
  42. /package/dist/{src → esm/src}/config/config.module.js +0 -0
  43. /package/dist/{src → esm/src}/config/config.providers.js +0 -0
  44. /package/dist/{src → esm/src}/config/config.service.js +0 -0
  45. /package/dist/{src → esm/src}/index.js +0 -0
  46. /package/dist/{src → types/src}/config/config.constants.d.ts +0 -0
  47. /package/dist/{src → types/src}/config/config.interfaces.d.ts +0 -0
  48. /package/dist/{src → types/src}/config/config.module.d.ts +0 -0
  49. /package/dist/{src → types/src}/config/config.providers.d.ts +0 -0
  50. /package/dist/{src → types/src}/config/config.service.d.ts +0 -0
  51. /package/dist/{src → types/src}/index.d.ts +0 -0
@@ -0,0 +1,13 @@
1
+ # @edirect/config
2
+
3
+ The EDirectInsure Configuration Module.
4
+
5
+ ## Installation
6
+
7
+ ```shell
8
+ $ npm i --save @edirect/config
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Import ConfigModule on AppModule (app.module.ts)
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "commonjs"
3
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CONFIG_SERVICE_TOKEN = void 0;
4
+ exports.CONFIG_SERVICE_TOKEN = 'CONFIG_SERVICE';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConfigModule = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const common_1 = require("@nestjs/common");
6
+ const config_providers_1 = require("./config.providers");
7
+ const config_service_1 = require("./config.service");
8
+ let ConfigModule = class ConfigModule {
9
+ };
10
+ exports.ConfigModule = ConfigModule;
11
+ exports.ConfigModule = ConfigModule = tslib_1.__decorate([
12
+ (0, common_1.Global)(),
13
+ (0, common_1.Module)({
14
+ providers: [...config_providers_1.ConfigProviders],
15
+ exports: [config_service_1.ConfigService],
16
+ })
17
+ ], ConfigModule);
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConfigProviders = void 0;
4
+ const config_service_1 = require("./config.service");
5
+ const config_constants_1 = require("./config.constants");
6
+ exports.ConfigProviders = [
7
+ {
8
+ provide: config_service_1.ConfigService,
9
+ useValue: new config_service_1.ConfigService(`.${process.env.NODE_ENV || 'development'}.env`),
10
+ },
11
+ {
12
+ provide: config_constants_1.CONFIG_SERVICE_TOKEN,
13
+ useExisting: config_service_1.ConfigService,
14
+ },
15
+ ];
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConfigService = void 0;
4
+ const dotenv_1 = require("dotenv");
5
+ const fs_1 = require("fs");
6
+ class ConfigService {
7
+ constructor(filePath) {
8
+ try {
9
+ process.env = { ...process.env, ...(0, dotenv_1.parse)((0, fs_1.readFileSync)(filePath)) };
10
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
11
+ }
12
+ catch (error) {
13
+ /* empty */
14
+ }
15
+ }
16
+ get(key) {
17
+ return process.env[key];
18
+ }
19
+ getConfig() {
20
+ return process.env;
21
+ }
22
+ }
23
+ exports.ConfigService = ConfigService;
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./config/config.module"), exports);
5
+ tslib_1.__exportStar(require("./config/config.service"), exports);
6
+ tslib_1.__exportStar(require("./config/config.interfaces"), exports);
@@ -0,0 +1,13 @@
1
+ # @edirect/config
2
+
3
+ The EDirectInsure Configuration Module.
4
+
5
+ ## Installation
6
+
7
+ ```shell
8
+ $ npm i --save @edirect/config
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Import ConfigModule on AppModule (app.module.ts)
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.constants.d.ts","sourceRoot":"","sources":["../../../../src/config/config.constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,mBAAmB,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.interfaces.d.ts","sourceRoot":"","sources":["../../../../src/config/config.interfaces.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.module.d.ts","sourceRoot":"","sources":["../../../../src/config/config.module.ts"],"names":[],"mappings":"AAKA,qBAKa,YAAY;CAAG"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.providers.d.ts","sourceRoot":"","sources":["../../../../src/config/config.providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAK1C,eAAO,MAAM,eAAe,EAAE,QAAQ,EAWrC,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.service.d.ts","sourceRoot":"","sources":["../../../../src/config/config.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,qBAAa,aAAa;gBACZ,QAAQ,EAAE,MAAM;IAS5B,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAIpC,SAAS,IAAI,aAAa;CAG3B"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC"}
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@edirect/config",
3
- "version": "11.0.8",
3
+ "version": "11.0.10",
4
4
  "packageScope": "@edirect",
5
- "type": "module",
6
- "main": "./dist/src/index.js",
7
- "module": "./dist/src/index.js",
8
- "types": "./dist/src/index.d.ts",
5
+ "main": "./dist/cjs/src/index.js",
6
+ "module": "./dist/esm/src/index.js",
7
+ "types": "./dist/types/src/index.d.ts",
9
8
  "exports": {
10
9
  "./package.json": "./package.json",
11
10
  ".": {
12
11
  "development": "./src/index.ts",
13
- "types": "./dist/src/index.d.ts",
14
- "import": "./dist/src/index.js",
15
- "default": "./dist/src/index.js"
12
+ "default": "./dist/src/index.js",
13
+ "types": "./dist/types/src/index.d.ts",
14
+ "import": "./dist/esm/src/index.js",
15
+ "require": "./dist/cjs/src/index.js"
16
16
  }
17
17
  },
18
+ "files": [
19
+ "dist/esm",
20
+ "dist/cjs",
21
+ "dist/types"
22
+ ],
18
23
  "dependencies": {
19
24
  "dotenv": "^17.2.1",
20
25
  "tslib": "^2.3.0",
@@ -24,16 +29,54 @@
24
29
  "@nx/rollup": "21.3.11"
25
30
  },
26
31
  "nx": {
32
+ "name": "@edirect/config",
27
33
  "targets": {
28
- "build": {
34
+ "build:esm": {
35
+ "executor": "@nx/js:tsc",
36
+ "options": {
37
+ "main": "{workspaceRoot}/packages/edirect-config/src/index.ts",
38
+ "tsConfig": "{workspaceRoot}/packages/edirect-config/tsconfig.esm.json",
39
+ "outputPath": "{workspaceRoot}/packages/edirect-config/dist/esm",
40
+ "assets": [
41
+ "{workspaceRoot}/packages/edirect-config/package.json",
42
+ "{workspaceRoot}/packages/edirect-config/README.md"
43
+ ]
44
+ }
45
+ },
46
+ "build:cjs": {
29
47
  "executor": "@nx/js:tsc",
30
- "outputs": [
31
- "{workspaceRoot}/packages/edirect-config/dist"
32
- ],
33
48
  "options": {
34
49
  "main": "{workspaceRoot}/packages/edirect-config/src/index.ts",
35
- "tsConfig": "{workspaceRoot}/packages/edirect-config/tsconfig.lib.json",
36
- "outputPath": "{workspaceRoot}/packages/edirect-config/dist"
50
+ "tsConfig": "{workspaceRoot}/packages/edirect-config/tsconfig.cjs.json",
51
+ "outputPath": "{workspaceRoot}/packages/edirect-config/dist/cjs",
52
+ "assets": [
53
+ "{workspaceRoot}/packages/edirect-config/package.json",
54
+ "{workspaceRoot}/packages/edirect-config/README.md"
55
+ ]
56
+ }
57
+ },
58
+ "gen-pkg-json": {
59
+ "executor": "nx:run-commands",
60
+ "options": {
61
+ "cwd": "{workspaceRoot}/packages/edirect-config",
62
+ "commands": [
63
+ "node -e \"const fs=require('fs');fs.mkdirSync('dist/esm',{recursive:true});fs.mkdirSync('dist/cjs',{recursive:true});fs.writeFileSync('dist/esm/package.json',JSON.stringify({type:'module'},null,2));fs.writeFileSync('dist/cjs/package.json',JSON.stringify({type:'commonjs'},null,2));\""
64
+ ]
65
+ },
66
+ "outputs": [
67
+ "{workspaceRoot}/packages/edirect-config/dist/esm/package.json",
68
+ "{workspaceRoot}/packages/edirect-config/dist/cjs/package.json"
69
+ ]
70
+ },
71
+ "build": {
72
+ "executor": "nx:run-commands",
73
+ "options": {
74
+ "commands": [
75
+ "nx build:esm @edirect/config",
76
+ "nx build:cjs @edirect/config",
77
+ "nx gen-pkg-json @edirect/config"
78
+ ],
79
+ "parallel": false
37
80
  }
38
81
  }
39
82
  }
package/.spec.swcrc DELETED
@@ -1,22 +0,0 @@
1
- {
2
- "jsc": {
3
- "target": "es2017",
4
- "parser": {
5
- "syntax": "typescript",
6
- "decorators": true,
7
- "dynamicImport": true
8
- },
9
- "transform": {
10
- "decoratorMetadata": true,
11
- "legacyDecorator": true
12
- },
13
- "keepClassNames": true,
14
- "externalHelpers": true,
15
- "loose": true
16
- },
17
- "module": {
18
- "type": "es6"
19
- },
20
- "sourceMaps": true,
21
- "exclude": []
22
- }
package/.swcrc DELETED
@@ -1,29 +0,0 @@
1
- {
2
- "jsc": {
3
- "target": "es2017",
4
- "parser": {
5
- "syntax": "typescript",
6
- "decorators": true,
7
- "dynamicImport": true
8
- },
9
- "transform": {
10
- "decoratorMetadata": true,
11
- "legacyDecorator": true
12
- },
13
- "keepClassNames": true,
14
- "externalHelpers": true,
15
- "loose": true
16
- },
17
- "module": {
18
- "type": "es6"
19
- },
20
- "sourceMaps": true,
21
- "exclude": [
22
- "jest.config.ts",
23
- ".*\\.spec.tsx?$",
24
- ".*\\.test.tsx?$",
25
- "./src/jest-setup.ts$",
26
- "./**/jest-setup.ts$",
27
- ".*.js$"
28
- ]
29
- }
package/dist/package.json DELETED
@@ -1,41 +0,0 @@
1
- {
2
- "name": "@edirect/config",
3
- "version": "11.0.7",
4
- "packageScope": "@edirect",
5
- "type": "module",
6
- "main": "./dist/src/index.js",
7
- "module": "./dist/src/index.js",
8
- "types": "./dist/src/index.d.ts",
9
- "exports": {
10
- "./package.json": "./package.json",
11
- ".": {
12
- "development": "./src/index.ts",
13
- "types": "./dist/src/index.d.ts",
14
- "import": "./dist/src/index.js",
15
- "default": "./dist/src/index.js"
16
- }
17
- },
18
- "dependencies": {
19
- "dotenv": "^17.2.1",
20
- "tslib": "^2.3.0",
21
- "@nestjs/common": "^11.1.6"
22
- },
23
- "devDependencies": {
24
- "@nx/rollup": "21.3.11"
25
- },
26
- "nx": {
27
- "targets": {
28
- "build": {
29
- "executor": "@nx/js:tsc",
30
- "outputs": [
31
- "{workspaceRoot}/packages/edirect-config/dist"
32
- ],
33
- "options": {
34
- "main": "{workspaceRoot}/packages/edirect-config/src/index.ts",
35
- "tsConfig": "{workspaceRoot}/packages/edirect-config/tsconfig.lib.json",
36
- "outputPath": "{workspaceRoot}/packages/edirect-config/dist"
37
- }
38
- }
39
- }
40
- }
41
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.constants.d.ts","sourceRoot":"","sources":["../../../src/config/config.constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,oBAAoB,mBAAmB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.interfaces.d.ts","sourceRoot":"","sources":["../../../src/config/config.interfaces.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.module.d.ts","sourceRoot":"","sources":["../../../src/config/config.module.ts"],"names":[],"mappings":"AAKA,qBAKa,YAAY;CAAG"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.providers.d.ts","sourceRoot":"","sources":["../../../src/config/config.providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAK1C,eAAO,MAAM,eAAe,EAAE,QAAQ,EAWrC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.service.d.ts","sourceRoot":"","sources":["../../../src/config/config.service.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,qBAAa,aAAa;gBACZ,QAAQ,EAAE,MAAM;IAS5B,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAIpC,SAAS,IAAI,aAAa;CAG3B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":"5.8.3"}
package/eslint.config.mjs DELETED
@@ -1,19 +0,0 @@
1
- import baseConfig from '../../eslint.config.mjs';
2
-
3
- export default [
4
- ...baseConfig,
5
- {
6
- files: ['**/*.json'],
7
- rules: {
8
- '@nx/dependency-checks': [
9
- 'error',
10
- {
11
- ignoredFiles: ['{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}'],
12
- },
13
- ],
14
- },
15
- languageOptions: {
16
- parser: await import('jsonc-eslint-parser'),
17
- },
18
- },
19
- ];
package/jest.config.ts DELETED
@@ -1,21 +0,0 @@
1
- /* eslint-disable */
2
- import { readFileSync } from 'fs';
3
-
4
- // Reading the SWC compilation config for the spec files
5
- const swcJestConfig = JSON.parse(
6
- readFileSync(`${__dirname}/.spec.swcrc`, 'utf-8')
7
- );
8
-
9
- // Disable .swcrc look-up by SWC core because we're passing in swcJestConfig ourselves
10
- swcJestConfig.swcrc = false;
11
-
12
- export default {
13
- displayName: '@edirect/config',
14
- preset: '../../jest.preset.js',
15
- testEnvironment: 'node',
16
- transform: {
17
- '^.+\\.[tj]s$': ['@swc/jest', swcJestConfig],
18
- },
19
- moduleFileExtensions: ['ts', 'js', 'html'],
20
- coverageDirectory: 'test-output/jest/coverage',
21
- };
package/rollup.config.cjs DELETED
@@ -1,16 +0,0 @@
1
- const { withNx } = require('@nx/rollup/with-nx');
2
-
3
- module.exports = withNx(
4
- {
5
- main: './src/index.ts',
6
- outputPath: './dist',
7
- tsConfig: './tsconfig.lib.json',
8
- compiler: 'swc',
9
- format: ['esm'],
10
- },
11
- {
12
- // Provide additional rollup configuration here. See: https://rollupjs.org/configuration-options
13
- // e.g.
14
- // output: { sourcemap: true },
15
- }
16
- );
@@ -1 +0,0 @@
1
- export const CONFIG_SERVICE_TOKEN = 'CONFIG_SERVICE';
@@ -1,3 +0,0 @@
1
- export interface IStringMapper {
2
- [key: string]: string;
3
- }
@@ -1,11 +0,0 @@
1
- import { Global, Module } from '@nestjs/common';
2
-
3
- import { ConfigProviders } from './config.providers';
4
- import { ConfigService } from './config.service';
5
-
6
- @Global()
7
- @Module({
8
- providers: [...ConfigProviders],
9
- exports: [ConfigService],
10
- })
11
- export class ConfigModule {}
@@ -1,17 +0,0 @@
1
- import { Provider } from '@nestjs/common';
2
-
3
- import { ConfigService } from './config.service';
4
- import { CONFIG_SERVICE_TOKEN } from './config.constants';
5
-
6
- export const ConfigProviders: Provider[] = [
7
- {
8
- provide: ConfigService,
9
- useValue: new ConfigService(
10
- `.${process.env.NODE_ENV || 'development'}.env`,
11
- ),
12
- },
13
- {
14
- provide: CONFIG_SERVICE_TOKEN,
15
- useExisting: ConfigService,
16
- },
17
- ];
@@ -1,23 +0,0 @@
1
- import { parse } from 'dotenv';
2
- import { readFileSync } from 'fs';
3
-
4
- import { IStringMapper } from './config.interfaces';
5
-
6
- export class ConfigService {
7
- constructor(filePath: string) {
8
- try {
9
- process.env = { ...process.env, ...parse(readFileSync(filePath)) };
10
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
11
- } catch (error) {
12
- /* empty */
13
- }
14
- }
15
-
16
- get(key: string): string | undefined {
17
- return process.env[key];
18
- }
19
-
20
- getConfig(): IStringMapper {
21
- return process.env as IStringMapper;
22
- }
23
- }
package/src/index.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from './config/config.module';
2
- export * from './config/config.service';
3
- export * from './config/config.interfaces';
package/tsconfig.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "files": [],
4
- "include": [],
5
- "references": [
6
- {
7
- "path": "./tsconfig.lib.json"
8
- },
9
- {
10
- "path": "./tsconfig.spec.json"
11
- }
12
- ]
13
- }
package/tsconfig.lib.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "baseUrl": ".",
5
- "rootDir": "src",
6
- "outDir": "dist",
7
- "tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo",
8
- "emitDeclarationOnly": false,
9
- "module": "esnext",
10
- "moduleResolution": "bundler",
11
- "forceConsistentCasingInFileNames": true,
12
- "composite": true,
13
- "types": ["node"]
14
- },
15
- "include": ["src/**/*.ts"],
16
- "references": [],
17
- "exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"]
18
- }
@@ -1,21 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "outDir": "./out-tsc/jest",
5
- "types": ["jest", "node"],
6
- "module": "esnext",
7
- "moduleResolution": "bundler",
8
- "forceConsistentCasingInFileNames": true
9
- },
10
- "include": [
11
- "jest.config.ts",
12
- "src/**/*.test.ts",
13
- "src/**/*.spec.ts",
14
- "src/**/*.d.ts"
15
- ],
16
- "references": [
17
- {
18
- "path": "./tsconfig.lib.json"
19
- }
20
- ]
21
- }
File without changes
File without changes
File without changes
File without changes