expo-backend-types 0.0.35 → 0.0.37

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.0.35",
3
+ "version": "0.0.37",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
7
7
  "license": "UNLICENSED",
8
8
  "files": [
9
9
  "types",
10
- "src/**/*.dto.ts"
10
+ "./tsconfig.json",
11
+ "src/**/*.dto.ts",
12
+ "src/**/exports.ts"
11
13
  ],
12
14
  "scripts": {
13
15
  "ci": "npm run build && npm run generate-ts-schema && npm run check-format && npm run lint && npm run check-exports",
@@ -0,0 +1,2 @@
1
+ export * from './dto/login.dto';
2
+ export * from './dto/register.dto';
@@ -0,0 +1 @@
1
+ export * from './dto/cuenta.dto';
package/src/exports.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './auth/exports';
2
+ export * from './cuenta/exports';
package/tsconfig.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "NodeNext",
4
+ "moduleResolution": "NodeNext",
5
+ "declaration": true,
6
+ "removeComments": true,
7
+ "emitDecoratorMetadata": true,
8
+ "experimentalDecorators": true,
9
+ "allowSyntheticDefaultImports": true,
10
+ "target": "ES2021",
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "baseUrl": "./",
14
+ "incremental": true,
15
+ "skipLibCheck": true,
16
+ "strictNullChecks": true,
17
+ "noImplicitAny": true,
18
+ "strictBindCallApply": true,
19
+ "forceConsistentCasingInFileNames": true,
20
+ "noUncheckedIndexedAccess": true,
21
+ "noFallthroughCasesInSwitch": true,
22
+ "esModuleInterop": true
23
+ }
24
+ }
package/types/dto.ts CHANGED
@@ -1 +1 @@
1
- export * from '../src/exports';
1
+ export * from '../src/exports';