Skip to content

Commit

Permalink
feat: ✨ Initial applications-config lib
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Nov 6, 2024
1 parent a7c5712 commit e5f0915
Show file tree
Hide file tree
Showing 11 changed files with 92 additions and 1 deletion.
7 changes: 7 additions & 0 deletions libs/application-config/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# applications-config

This library was generated with [Nx](https://nx.dev).

## Running unit tests

Run `nx test applications-config` to execute the unit tests via [Jest](https://jestjs.io).
3 changes: 3 additions & 0 deletions libs/application-config/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const baseConfig = require('../../eslint.config.js');

module.exports = [...baseConfig];
10 changes: 10 additions & 0 deletions libs/application-config/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
displayName: 'applications-config',
preset: '../../jest.preset.js',
testEnvironment: 'node',
transform: {
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
},
moduleFileExtensions: ['ts', 'js', 'html'],
coverageDirectory: '../../coverage/libs/application-config',
};
9 changes: 9 additions & 0 deletions libs/application-config/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "applications-config",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/application-config/src",
"projectType": "library",
"tags": [],
"// targets": "to see all targets run: nx show project applications-config --web",
"targets": {}
}
1 change: 1 addition & 0 deletions libs/application-config/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/applications-config';
7 changes: 7 additions & 0 deletions libs/application-config/src/lib/applications-config.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { applicationsConfig } from './applications-config';

describe('applicationsConfig', () => {
it('should work', () => {
expect(applicationsConfig()).toEqual('applications-config');
});
});
3 changes: 3 additions & 0 deletions libs/application-config/src/lib/applications-config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function applicationsConfig(): string {
return 'applications-config';
}
22 changes: 22 additions & 0 deletions libs/application-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true
},
"files": [],
"include": [],
"references": [
{
"path": "./tsconfig.lib.json"
},
{
"path": "./tsconfig.spec.json"
}
]
}
11 changes: 11 additions & 0 deletions libs/application-config/tsconfig.lib.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": "../../dist/out-tsc",
"declaration": true,
"types": ["node"]
},
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"],
"include": ["src/**/*.ts"]
}
14 changes: 14 additions & 0 deletions libs/application-config/tsconfig.spec.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node"]
},
"include": [
"jest.config.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
}
6 changes: 5 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {}
"paths": {
"@graphql-federation-workspace/applications-config": [
"libs/application-config/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}

0 comments on commit e5f0915

Please sign in to comment.