Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
516 B
Markdown
34 lines
516 B
Markdown
# babel-preset-jest
|
|
|
|
> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/jestjs/jest/tree/main/packages/babel-jest).
|
|
|
|
## Install
|
|
|
|
```sh
|
|
$ npm install --save-dev babel-preset-jest
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Via `babel.config.js` (Recommended)
|
|
|
|
```js
|
|
module.exports = {
|
|
presets: ['jest'],
|
|
};
|
|
```
|
|
|
|
### Via CLI
|
|
|
|
```sh
|
|
$ babel script.js --presets jest
|
|
```
|
|
|
|
### Via Node API
|
|
|
|
```javascript
|
|
require('@babel/core').transform('code', {
|
|
presets: ['jest'],
|
|
});
|
|
```
|