0pflow 0.1.0-dev.4fd2ac2 → 0.1.0-dev.7aacb27
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/dist/cli/index.d.ts +1 -5
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +1 -21
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/install.d.ts.map +1 -1
- package/dist/cli/install.js +22 -25
- package/dist/cli/install.js.map +1 -1
- package/dist/cli/mcp/config.d.ts +1 -0
- package/dist/cli/mcp/config.d.ts.map +1 -1
- package/dist/cli/mcp/config.js +4 -2
- package/dist/cli/mcp/config.js.map +1 -1
- package/dist/cli/mcp/tools/createApp.d.ts.map +1 -1
- package/dist/cli/mcp/tools/createApp.js +6 -6
- package/dist/cli/mcp/tools/createApp.js.map +1 -1
- package/dist/cli/mcp/tools/setupAppSchema.d.ts.map +1 -1
- package/dist/cli/mcp/tools/setupAppSchema.js +2 -5
- package/dist/cli/mcp/tools/setupAppSchema.js.map +1 -1
- package/package.json +2 -3
- package/templates/app/.env.example +0 -13
- package/templates/app/README.md +0 -29
- package/templates/app/biome.jsonc +0 -81
- package/templates/app/drizzle.config.ts +0 -12
- package/templates/app/next.config.js +0 -10
- package/templates/app/package.json +0 -52
- package/templates/app/postcss.config.js +0 -5
- package/templates/app/public/favicon.ico +0 -0
- package/templates/app/src/app/_components/.gitkeep +0 -0
- package/templates/app/src/app/api/trpc/[trpc]/route.ts +0 -34
- package/templates/app/src/app/layout.tsx +0 -29
- package/templates/app/src/app/page.tsx +0 -18
- package/templates/app/src/env.js +0 -46
- package/templates/app/src/server/api/root.ts +0 -21
- package/templates/app/src/server/api/routers/.gitkeep +0 -0
- package/templates/app/src/server/api/trpc.ts +0 -106
- package/templates/app/src/server/db/index.ts +0 -18
- package/templates/app/src/server/db/schema.ts +0 -14
- package/templates/app/src/styles/globals.css +0 -6
- package/templates/app/src/styles/globals.css.orange +0 -126
- package/templates/app/src/trpc/query-client.ts +0 -25
- package/templates/app/src/trpc/react.tsx +0 -78
- package/templates/app/src/trpc/server.ts +0 -30
- package/templates/app/tsconfig.check.json +0 -23
- package/templates/app/tsconfig.json +0 -42
- package/templates/app/tsconfig.server.json +0 -5
- package/templates/app/tsconfig.test.json +0 -21
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Base Options: */
|
|
4
|
-
"esModuleInterop": true,
|
|
5
|
-
"skipLibCheck": true,
|
|
6
|
-
"target": "es2022",
|
|
7
|
-
"allowJs": true,
|
|
8
|
-
"resolveJsonModule": true,
|
|
9
|
-
"moduleDetection": "force",
|
|
10
|
-
"isolatedModules": true,
|
|
11
|
-
"verbatimModuleSyntax": true,
|
|
12
|
-
|
|
13
|
-
/* Strictness */
|
|
14
|
-
"strict": true,
|
|
15
|
-
"noUncheckedIndexedAccess": true,
|
|
16
|
-
"checkJs": true,
|
|
17
|
-
|
|
18
|
-
/* Bundled projects */
|
|
19
|
-
"lib": ["dom", "dom.iterable", "ES2022"],
|
|
20
|
-
"noEmit": true,
|
|
21
|
-
"module": "ESNext",
|
|
22
|
-
"moduleResolution": "Bundler",
|
|
23
|
-
"jsx": "preserve",
|
|
24
|
-
"plugins": [{ "name": "next" }],
|
|
25
|
-
"incremental": true,
|
|
26
|
-
|
|
27
|
-
/* Path Aliases */
|
|
28
|
-
"baseUrl": ".",
|
|
29
|
-
"paths": {
|
|
30
|
-
"~/*": ["./src/*"]
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"include": [
|
|
34
|
-
"next-env.d.ts",
|
|
35
|
-
"**/*.ts",
|
|
36
|
-
"**/*.tsx",
|
|
37
|
-
"**/*.cjs",
|
|
38
|
-
"**/*.js",
|
|
39
|
-
".next/types/**/*.ts"
|
|
40
|
-
],
|
|
41
|
-
"exclude": ["node_modules", "generated"]
|
|
42
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"noUnusedLocals": true,
|
|
5
|
-
"noUnusedParameters": true,
|
|
6
|
-
"allowUnreachableCode": false,
|
|
7
|
-
},
|
|
8
|
-
"include": [
|
|
9
|
-
"**/*.test.ts",
|
|
10
|
-
"**/*.test.tsx",
|
|
11
|
-
"**/*.spec.ts",
|
|
12
|
-
"**/*.spec.tsx",
|
|
13
|
-
"src/**/__tests__/*.ts",
|
|
14
|
-
"src/**/__tests__/*.tsx",
|
|
15
|
-
"src/tests/**/*.ts",
|
|
16
|
-
"tests/**/*.ts",
|
|
17
|
-
"tests/**/*.tsx",
|
|
18
|
-
"vitest.config.*",
|
|
19
|
-
"vitest.setup.*"
|
|
20
|
-
]
|
|
21
|
-
}
|