expo-backend-types 0.0.37 → 0.0.39

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.0.37",
3
+ "version": "0.0.39",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -1,5 +1,5 @@
1
1
  import { createZodDto } from '@anatine/zod-nestjs';
2
- import { cuentaSchema } from 'src/cuenta/dto/cuenta.dto';
2
+ import { cuentaSchema } from '@/cuenta/dto/cuenta.dto';
3
3
  import z from 'zod';
4
4
 
5
5
  export const loginSchema = cuentaSchema.pick({
@@ -1,5 +1,5 @@
1
1
  import { createZodDto } from '@anatine/zod-nestjs';
2
- import { cuentaSchema } from 'src/cuenta/dto/cuenta.dto';
2
+ import { cuentaSchema } from '@/cuenta/dto/cuenta.dto';
3
3
 
4
4
  export const registerSchema = cuentaSchema.pick({
5
5
  username: true,
package/tsconfig.json CHANGED
@@ -19,6 +19,9 @@
19
19
  "forceConsistentCasingInFileNames": true,
20
20
  "noUncheckedIndexedAccess": true,
21
21
  "noFallthroughCasesInSwitch": true,
22
- "esModuleInterop": true
22
+ "esModuleInterop": true,
23
+ "paths": {
24
+ "@/*": ["./src/*"]
25
+ }
23
26
  }
24
27
  }