@digilogiclabs/create-saas-app 1.19.6 → 1.19.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +29 -0
- package/README.md +23 -8
- package/dist/.tsbuildinfo +1 -1
- package/dist/templates/mobile/base/template/.env.example +7 -7
- package/dist/templates/mobile/base/template/package.json +3 -3
- package/dist/templates/mobile/ui-auth-payments/template/package.json +6 -5
- package/dist/templates/mobile/ui-auth-payments/template/tsconfig.json +1 -1
- package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +6 -5
- package/dist/templates/mobile/ui-auth-payments-ai/template/tsconfig.json +1 -1
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app.json +73 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +25 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +25 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +3 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +37 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +11 -0
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +6 -5
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +32 -0
- package/package.json +1 -1
- package/src/templates/mobile/base/template/.env.example +7 -7
- package/src/templates/mobile/base/template/package.json +3 -3
- package/src/templates/mobile/ui-auth-payments/template/package.json +6 -5
- package/src/templates/mobile/ui-auth-payments/template/tsconfig.json +1 -1
- package/src/templates/mobile/ui-auth-payments-ai/template/package.json +6 -5
- package/src/templates/mobile/ui-auth-payments-ai/template/tsconfig.json +1 -1
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/app.json +73 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/babel.config.js +25 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/eas.json +25 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/expo-env.d.ts +3 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/jest-setup.ts +37 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/metro.config.js +11 -0
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +6 -5
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/tsconfig.json +32 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "expo/tsconfig.base",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"baseUrl": "./",
|
|
6
|
+
"paths": {
|
|
7
|
+
"@/*": ["./*"],
|
|
8
|
+
"@/components/*": ["./components/*"],
|
|
9
|
+
"@/hooks/*": ["./hooks/*"],
|
|
10
|
+
"@/utils/*": ["./utils/*"],
|
|
11
|
+
"@/types/*": ["./types/*"],
|
|
12
|
+
"@/constants/*": ["./constants/*"],
|
|
13
|
+
"@/lib/*": ["./lib/*"]
|
|
14
|
+
},
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"allowSyntheticDefaultImports": true,
|
|
17
|
+
"esModuleInterop": true,
|
|
18
|
+
"moduleResolution": "bundler",
|
|
19
|
+
"resolveJsonModule": true,
|
|
20
|
+
"noEmit": true,
|
|
21
|
+
"jsx": "react-jsx"
|
|
22
|
+
},
|
|
23
|
+
"include": [
|
|
24
|
+
"**/*.ts",
|
|
25
|
+
"**/*.tsx",
|
|
26
|
+
".expo/types/**/*.ts",
|
|
27
|
+
"expo-env.d.ts"
|
|
28
|
+
],
|
|
29
|
+
"exclude": [
|
|
30
|
+
"node_modules"
|
|
31
|
+
]
|
|
32
|
+
}
|