Upgraded the package version to 0.0.9. Introduced Typedoc for generating documentation with added script in package.json. Enhanced exception handling by introducing `DependencyResolutionError`. Refined TSinjex comments and README structure for better readability. Updated index file exports for better module organization.
24 lines
641 B
Markdown
24 lines
641 B
Markdown
# TSinjex
|
|
|
|
## Configuration
|
|
|
|
### Jest
|
|
|
|
#### Example jest setup
|
|
|
|
```ts
|
|
module.exports = {
|
|
setupFilesAfterEnv: ['./scripts/jest.setup.js'],
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/__tests__/**/*.test.ts', '**/?(*.)+(test).ts'],
|
|
moduleDirectories: ['node_modules', 'src'],
|
|
moduleNameMapper: {
|
|
'^src/(.*)$': '<rootDir>/src/$1', // Map src to the source folder
|
|
'^ts-injex$': '<rootDir>/node_modules/ts-injex/src', // Map ts-injex to the source folder
|
|
},
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!ts-injex)' // **Dont** ignore ts-injex on preset `ts-jest`
|
|
],
|
|
};
|
|
``` |